queue in c++ code example
Example 1: stl queue
Functions used here:
q.size() = Returns the size of queue.
q.push() = It is used to insert elements to the queue.
q.pop() = To pop out the value from the queue.
q.front() = Returns the front element of the array.
q.back() = Returns the back element of the array.
Example 2: priority queue in c++
priority_queue<int> pq;
priority_queue <int, vector<int>, greater<int> > pq;
#define pp pair<int, int>
priority_queue <pp, vector<pp>, greater<pp> > pq;
Example 3: queue c++
The functions supported by queue:
---------------------------------
empty() | Tests whether queue is empty or not.
size() | Returns the total number of elements present in the queue.
push() | Inserts new element at the end of queue.
emplace() | Constructs and inserts new element at the end of queue.
pop() | Removes front element of the queue.
swap() | Exchanges the contents of queue with contents of another queue.
front() | Returns a reference to the first element of the queue.
back() | Returns a reference to the last element of queue.