|
back
Syntax:
#include <queue> TYPE& back(); const TYPE& back() const; The back() function returns a reference to the last element in the queue. For example:
vector<int> v;
for( int i = 0; i < 5; i++ ) {
v.push_back(i);
}
cout << "The first element is " << v.front()
<< " and the last element is " << v.back() << endl;
This code produces the following output: The first element is 0 and the last element is 4 The back() function runs in constant time. |
#include <queue> bool empty() const;
The empty() function returns true if the queue has no elements, false otherwise.
For example, the following code uses empty() as the stopping condition on a (C/C++ Keywords) while loop to clear a queue and display its contents in reverse order:
vector<int> v;
for( int i = 0; i < 5; i++ ) {
v.push_back(i);
}
while( !v.empty() ) {
cout << v.back() << endl;
v.pop_back();
}