• STL--priority_queue--自定义数据类型


    STL中priority_queue的声明模板有3个参数priority_queue<Type,Container,Functional>。

    当使用的数据类型Type为自定义数据类型时有以下3种方法。

    1)写仿函数

     1 #include<iostream>
     2 #include<queue>
     3 using namespace std;
     4 struct Node
     5 {
     6     int x,y;
     7 };
     8 struct cmp
     9 {
    10     bool operator()(Node a,Node b)
    11     {
    12         if(a.x!=b.x)
    13             return a.x<b.x;//<为大顶堆,>为小顶堆
    14         return a.y<b.y;
    15     }
    16 };
    17 int main()
    18 {
    19     Node node[9]={{0,0},{0,1},{0,2},{1,0},{1,1},{1,2},{2,0},{2,1},{2,2}};
    20     //建立9个结点
    21     priority_queue <Node,vector<Node>,cmp> q(node,node+9);//将9个点存入优先队列q
    22     while(!q.empty())//输出
    23     {
    24         Node n=q.top();
    25         cout<<n.x<<' '<<n.y<<endl;
    26         q.pop();
    27     }
    28     return 0;
    29 }

    2)数据类型外重载operator<

     1 #include<iostream>
     2 #include<queue>
     3 using namespace std;
     4 struct Node
     5 {
     6     int x,y;
     7 };
     8 bool operator<(Node a,Node b)
     9 {
    10     if(a.x!=b.x)
    11         return a.x<b.x;//<为大顶堆,>为小顶堆
    12     return a.y<b.y;
    13 }
    14 int main()
    15 {
    16     Node node[9]={{0,0},{0,1},{0,2},{1,0},{1,1},{1,2},{2,0},{2,1},{2,2}};
    17     //建立9个结点
    18     priority_queue <Node> q(node,node+9);//将9个点存入优先队列q
    19     while(!q.empty())//输出
    20     {
    21         Node n=q.top();
    22         cout<<n.x<<' '<<n.y<<endl;
    23         q.pop();
    24     }
    25     return 0;
    26 }

    3)数据类型内重载operator<

     1 #include<iostream>
     2 #include<queue>
     3 using namespace std;
     4 struct Node
     5 {
     6     int x,y;
     7     bool operator<(const Node a)const
     8     {
     9         if(x!=a.x)
    10             return x<a.x;
    11         return y<a.y;
    12     }
    13 };
    14 int main()
    15 {
    16     Node node[9]={{0,0},{0,1},{0,2},{1,0},{1,1},{1,2},{2,0},{2,1},{2,2}};
    17     //建立9个结点
    18     priority_queue <Node> q(node,node+9);//将9个点存入优先队列q
    19     while(!q.empty())//输出
    20     {
    21         Node n=q.top();
    22         cout<<n.x<<' '<<n.y<<endl;
    23         q.pop();
    24     }
    25     return 0;
    26 }
  • 相关阅读:
    不用写代码的框架
    bat执行python脚本,执行多条命令
    VMware-workstation-full-15.1.0-13591040安装破解-附件密钥
    w10谷歌chrome关闭自动更新
    谷歌安装提示已经安装高版本解决
    python项目三方库导出导入 requirements.txt文件
    点阴影
    goto gamedev blog
    20135315-信息安全系统设计基础第五周学习总结
    win10 +python3.6环境下安装opencv以及pycharm导入cv2有问题的解决办法
  • 原文地址:https://www.cnblogs.com/Fresh--air/p/6705878.html
Copyright © 2020-2023  润新知