const value_type& back() const Returns a const reference to the element at the back of the queue, that is, the element most recently inserted. Precondition: empty() is false.
void push(const value_type& x) Inserts x at the back of the queue. Postconditions: size() will be incremented by 1, and back() will be equal to x.
void pop() Removes the element at the front of the queue. [3] Precondition: empty() is false. Postcondition: size() will be decremented by 1.
bool operator==(const queue&, const queue&) Compares two queues for equality. Two queues are equal if they contain the same number of elements and if they are equal element-by-element. This is a global function, not a member function.
bool operator<(const queue&, const queue&) Lexicographical ordering of two queues. This is a global function, not a member function.
Notes

[1] Queues are a standard data structure, and are discussed in all algorithm books. See, for example, section 2.2.1 of Knuth. (D. E. Knuth, The Art of Computer Programming. Volume 1: Fundamental Algorithms, second edition. Addison-Wesley, 1973.)

[2] This restriction is the only reason for queue to exist at all. Any container that is both a front insertion sequence and a back insertion sequence can be used as a queue; deque, for example, has member functions front, back, push_front, push_back, pop_front, and pop_back The only reason to use the container adaptor queue instead of the container deque is to make it clear that you are performing only queue operations, and no other operations.

[3] One might wonder why pop() returns void, instead of value_type. That is, why must one use front() and pop() to examine and remove the element at the front of the queue, instead of combining the two in a single member function? In fact, there is a good reason for this design. If pop() returned the front element, it would have to return by value rather than by reference: return by reference would create a dangling pointer. Return by value, however, is inefficient: it involves at least one redundant copy constructor call. Since it is impossible for pop() to return a value in such a way as to be both efficient and correct, it is more sensible for it to return no value at all and to require clients to use front() to inspect the value at the front of the queue.

See also

stack, priority_queue, deque, Container, Sequence

priority_queue<T, Sequence, Compare>

Categories: containers, adaptors

Component type: type

Description

A priority_queue is an adaptor that provides a restricted subset of Container functionality: it provides insertion of elements, and inspection and removal of the top element. It is guaranteed that the top element is the largest element in the priority_queue, where the function object Compare is used for comparisons. [1] Priority_queue does not allow iteration through its elements. [2]

Priority_queue is a container adaptor, meaning that it is implemented on top of some underlying container type. By default that underlying type is vector, but a different type may be selected explicitly.

Example

int main() {

 priority_queue<int> Q;

 Q.push(1);

 Q.push(4);

 Q.push(2);

 Q.push(8);

 Q.push(5);

 Q.push(7);

 assert(Q.size() == 6);

 assert(Q.top() == 8);

 Q.pop();

 assert(Q.top() == 7);

 Q.pop();

 assert(Q.top() == 5);

 Q.pop();

 assert(Q.top() == 4);

 Q.pop();

 assert(Q.top() == 2);

 Q.pop();

 assert(Q.top() == 1);

 Q.pop();

 assert(Q.empty());

}

Definition

Defined in the standard header queue, and in the nonstandard backward-compatibility header stack.h.

Template parameters
Добавить отзыв
ВСЕ ОТЗЫВЫ О КНИГЕ В ИЗБРАННОЕ

0

Вы можете отметить интересные вам фрагменты текста, которые будут доступны по уникальной ссылке в адресной строке браузера.

Отметить Добавить цитату