優先隊列的初始理解

#include<iostream> #include<queue> using namespace std; struct node{       int x; }s; bool operator <(node a,node b){       return a.x<b.x;//從大到小排序,與bool cmp()sort相反       //return a.x>b.x;//從
相關文章
相關標籤/搜索