C++ 優先隊列的基本使用方法

[cpp]  view plain  copy   #include<cstdio>   #include<queue>   using namespace std;      priority_queue<int> da;  //大根堆   priority_queue<int,vector<int>,greater<int> > xiao;  //小根堆,最後的兩個「>」之間要有空格,vect
相關文章
相關標籤/搜索