Adds the element with the specified priority to the end of the priority queue without ensuring the heap condition.
Adds the element with the specified priority to the end of the priority queue without ensuring the heap condition.This function has a time complexity of O(1).
This function together with pblPriorityQueueConstruct() can be used to build a priority queue with N elements in time proportional to N.
First create an empty queue with pblPriorityQueueNew() and ensure the queue has space for N elements via a call to pblPriorityQueueEnsureCapacity(), then add all elements via calls to this function and finally ensure the heap condition with a call to pblPriorityQueueConstruct().