STL stack queue priority_queue

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了STL stack queue priority_queue相关的知识,希望对你有一定的参考价值。

栈:

empty()

pop()

push()

size()

top()

 

队列:

back()

empty()

front()

pop()

push()

size()

 

优先队列:

empty()

pop()

push()

size()

top()

priority_queue<int>  pq;   默认升序

priority_queue<int, vector<int>, greater<int> >  pq; 降序

priority_queue<int, vector<int>, f() >  pq;       f()为双参数函数

 

以上是关于STL stack queue priority_queue的主要内容,如果未能解决你的问题,请参考以下文章

STL详解—— stack和queue的模拟实现

C++提高编程STL-stack&queue 容器

STL之stack容器和queue容器

STL容器适配器stack和queue

C++STL-stack与queue以及priority_queue

6-5-1:STL之stack和queue——stack和queue的快速入门常用接口以及适配器的概念