优先级队列是一种容器适配器,经过专门设计,使得队列中的第一个元素是队列中所有元素中最大的,并且元素的顺序不递增(因此,我们可以看到队列中的每个元素都具有优先级{固定顺序})。
CPP
// Note that by default C++ creates a max-heap
// for priority queue
#include
#include
using namespace std;
void showpq(priority_queue gq)
{
priority_queue g = gq;
while (!g.empty()) {
cout << '\t' << g.top();
g.pop();
}
cout << '\n';
}
int main()
{
priority_queue gquiz;
gquiz.push(10);
gquiz.push(30);
gquiz.push(20);
gquiz.push(5);
gquiz.push(1);
cout << "The priority queue gquiz is : ";
showpq(gquiz);
cout << "\ngquiz.size() : " << gquiz.size();
cout << "\ngquiz.top() : " << gquiz.top();
cout << "\ngquiz.pop() : ";
gquiz.pop();
showpq(gquiz);
return 0;
}
CPP
// C++ program to demonstrate min heap
#include
#include
using namespace std;
void showpq(
priority_queue, greater > gq)
{
priority_queue,
greater > g = gq;
while (!g.empty()) {
cout << '\t' << g.top();
g.pop();
}
cout << '\n';
}
int main()
{
priority_queue,
greater > gquiz;
gquiz.push(10);
gquiz.push(30);
gquiz.push(20);
gquiz.push(5);
gquiz.push(1);
cout << "The priority queue gquiz is : ";
showpq(gquiz);
cout << "\ngquiz.size() : " << gquiz.size();
cout << "\ngquiz.top() : " << gquiz.top();
cout << "\ngquiz.pop() : ";
gquiz.pop();
showpq(gquiz);
return 0;
}
输出:
The priority queue gquiz is : 30 20 10 5 1
gquiz.size() : 5
gquiz.top() : 30
gquiz.pop() : 20 10 5 1
如何为优先级队列创建最小堆?
C++为此提供了以下语法。
// Syntax to create a min heap for priority queue
priority_queue
CPP
// C++ program to demonstrate min heap
#include
#include
using namespace std;
void showpq(
priority_queue, greater > gq)
{
priority_queue,
greater > g = gq;
while (!g.empty()) {
cout << '\t' << g.top();
g.pop();
}
cout << '\n';
}
int main()
{
priority_queue,
greater > gquiz;
gquiz.push(10);
gquiz.push(30);
gquiz.push(20);
gquiz.push(5);
gquiz.push(1);
cout << "The priority queue gquiz is : ";
showpq(gquiz);
cout << "\ngquiz.size() : " << gquiz.size();
cout << "\ngquiz.top() : " << gquiz.top();
cout << "\ngquiz.pop() : ";
gquiz.pop();
showpq(gquiz);
return 0;
}
输出:
The priority queue gquiz is : 1 5 10 20 30
gquiz.size() : 5
gquiz.top() : 1
gquiz.pop() : 5 10 20 30
注意:上面的语法可能很难记住,因此在数字值的情况下,我们可以将值乘以-1并使用max heap来获得min heap的效果。
优先队列的方法有:
- C++ STL中的priority_queue :: empty()– empty()函数返回队列是否为空。
- C++ STL中的priority_queue :: size()– size()函数返回队列的大小。
- C++ STL中的priority_queue :: top()–返回对队列最顶层元素的引用
- C++ STL中的priority_queue :: push() – push(g)函数在队列末尾添加元素“ g”。
- C++ STL中的priority_queue :: pop()– pop()函数删除队列的第一个元素。
- C++ STL中的priority_queue :: swap()–此函数用于将一个优先级队列的内容与另一个相同类型和大小的优先级队列交换。
- C++ STL中的priority_queue :: emplace()–此函数用于将新元素插入优先级队列容器,并将新元素添加到优先级队列的顶部。
- C++ STL中的priority_queue value_type –表示作为元素存储在priority_queue中的对象的类型。它充当模板参数的同义词。
STL中有关优先级队列的最新文章
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。