priority_queue & 結構體

來源:互聯網
上載者:User

    template< class T ,

                     class Sequence=vector<T> ,

                     class Compare=less<typename Sequence::value_type> >

    兩種方法對結構體優先隊列指定自己的優先順序

方法一:

#include<iostream><br />#include<vector><br />#include<queue><br />using namespace std;</p><p>struct node<br />{<br />int x;<br />int y;<br />int w;<br />friend bool operator> (const node& a,const node& b)<br />{<br />return (a.w > b.w);<br />}<br />friend bool operator< (const node& a,const node& b)<br />{<br />return (a.w < b.w);<br />}<br />};</p><p>int main()<br />{<br />int i;<br />priority_queue < node, vector<node>, greater<node> > que1;<br />//priority_queue < node, vector<node>, greater<node>>(兩個連在一起不行) que;<br /> priority_queue < node, vector<node>, less<node> > que2;<br />node da[5];<br />for(i = 0;i < 5;i++)<br />{<br />da[i].x = i;<br />da[i].y = i;<br />da[i].w = i;<br /> que1.push(da[i]);<br />que2.push(da[i]);<br />}</p><p>while(!que1.empty())<br />{<br />cout<<que1.top().x<<" "<<que1.top().y<<" "<<que1.top().w<<endl;<br />que1.pop();<br />}<br />cout<<endl;</p><p>while(!que2.empty())<br />{<br />cout<<que2.top().x<<" "<<que2.top().y<<" "<<que2.top().w<<endl;<br />que2.pop();<br />}<br />cout<<endl;<br />return 0;<br />}

方法二:

#include<iostream><br />#include<vector><br />#include<queue><br />using namespace std;</p><p>struct node<br />{<br />int x;<br />int y;<br />int w;<br />};</p><p>struct node_greater_cmp<br />{<br />bool operator()(const node& a,const node& b)<br />{<br />return a.w > b.w;<br />}<br />};</p><p>struct node_less_cmp<br />{<br />bool operator()(const node& a,const node& b)<br />{<br />return a.w < b.w;<br />}<br />};</p><p>int main()<br />{<br />int i;<br />priority_queue < node, vector<node>, node_greater_cmp > que1;<br />priority_queue < node, vector<node>, node_less_cmp > que2;</p><p> node da[5];<br />for(i = 0;i < 5;i++)<br />{<br />da[i].x = i;<br />da[i].y = i;<br />da[i].w = i;<br /> que1.push(da[i]);<br />que2.push(da[i]);<br />}</p><p>while(!que1.empty())<br />{<br />cout<<que1.top().x<<" "<<que1.top().y<<" "<<que1.top().w<<endl;<br />que1.pop();<br />}<br />cout<<endl;</p><p>while(!que2.empty())<br />{<br />cout<<que2.top().x<<" "<<que2.top().y<<" "<<que2.top().w<<endl;<br />que2.pop();<br />}<br />cout<<endl;<br />return 0;<br />}

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.