priority_queue 用法总结

简介:

今天在写堆和哈夫曼树的ACM题的时候,接触到priority_queue的用法,由于比较函数的难些,请教过队内的红薯和杨大牛后才稍微弄明白些,下面总结如下,首先我是用手写的堆来过题的,其实和照黑书指导上的那个堆的代码差不多。

   写完之后就看了下STL里面的priority_queue的用法就开始研究,首先是用了网上找的一个写比较函数的方法是用操作符重载做的。代码如下:

//比较函数
对于结构体
struct heapmin
{
 heapmin(int tx){x=tx;};
 int x;
};
struct heapmax
{
 heapmax(int tx){x=tx;};
 int x;
};
bool operator<(const struct heapmin &a,const struct heapmin &b)
{
  return a.x<b.x;
}//最小堆
bool operator<(const struct heapmax &a,const struct heapmax &b)
{
  return a.x>b.x;
}//最大堆

然后就可以用STL里面给的那些push,pop,top,size,empty函数了。

然后由于G++一直跑的RE所以我想把结构体改成里面只是存int型整数,然后就瓜起了,不会写了,自己仿照sort里面那个比较函数写是错的,然后我就不会写了,就去群里问人,得到两种方法,

一个是用stl里面#include<functional>里面的great<int> less<int>最比较函数写,我试了下,是可以的。谢谢红薯;

代码如下:

//比较函数
#inclulde<iostream>
#include<functional>
priority_queue< int, vector<int>, great<int> >//最小堆
priority_queue< int, vector<int>, less<int> >//最大堆

然后就是杨大牛的方法,把比较函数写成结构体的形式,代码如下:

#include<iostream>
#include<queue>
using namespace std;
struct cmp
{
 bool operator()(const int &a,const int &b)
 {
  return a>b;//最大堆
  return a<b;//最小堆
 }
};
priority_queue< int, vector<int>, cmp >

用了上面的所有方法做了poj1442

http://162.105.81.212/JudgeOnline/problem?id=1442

结果发现用STL的效率没有自己手写的那个高,也可能是我不是很熟悉STL吧。我问了人,他们说里面的容器的效率不是很高,但是<algorithm>里面的函数写的效率很高,其实时间跑的是一样的,但是内存STL占的比手写的多。

不过说实话STL还是蛮好用的,从sort开始结识到STL,到next_permutation,stack,priority_queue等,发现这些还是很好用的,以后得多加学习一下,多熟悉一下,在TC的比赛中还是很好用的。当然这些好的数据结构自己手写还是要实现一下的。

本文转自博客园知识天地的博客,原文链接:priority_queue 用法总结,如需转载请自行联系原博主。

相关文章
|
5月前
|
存储 算法 C++
c++的学习之路:17、stack、queue与priority_queue
c++的学习之路:17、stack、queue与priority_queue
46 0
|
4月前
|
设计模式 算法 C++
satck和queue以及priority_queue
satck和queue以及priority_queue
27 1
|
存储 算法 C++
C++ STL priority_queue
优先队列是一种容器适配器,根据严格的弱排序标准,它的第一个元素总是它所包含的元素中最大的。
|
5月前
|
算法 C语言 C++
C++:priority_queue模拟实现
C++:priority_queue模拟实现
43 0
|
5月前
|
存储 算法 C++
priority_queue的模拟实现
priority_queue的模拟实现
55 0
|
5月前
|
测试技术 C++
c++优先队列priority_queue(自定义比较函数)
c++优先队列priority_queue(自定义比较函数)
268 0
|
11月前
|
存储 算法 C++
C++ priority_queue
C++ priority_queue
|
11月前
|
C++
priority_queue 模拟实现
priority_queue 模拟实现
38 0
|
设计模式 算法 C语言
C++实践模拟(stack,queue & priority_queue,仿函数)
C++实践模拟(stack,queue & priority_queue,仿函数)
53 0
|
12月前
|
存储 算法 程序员
stack、queue、priority_queue的使用和简单实现【STL】
stack、queue、priority_queue的使用和简单实现【STL】
55 0