優先隊列(priority_queue)四種自定義排序方法

#include<iostream> #include<vector> #include<queue> using namespace std; struct cmp{ bool operator () ( int r , int l ){ return r > l; } }; struct cmp1{ bool operator
相關文章
相關標籤/搜索