posts - 225, comments - 62, trackbacks - 0, articles - 0
   :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

 

#include <iostream>
#include 
<functional>
#include 
<cstdlib>
#include 
<algorithm>
#include 
<queue>
#include 
<set>
#include 
<vector>
#include 
<string>
using namespace std;

struct Node{
    
int data;
    Node(){}
    Node(
int n){data=n;}
};

struct myCmp : binary_function<Node,Node,bool>{
    
bool operator () (const Node& a,const Node& b)
    {
        
return a.data < b.data;
    }
};
/*
根据实践即便不从 binary_function 派生也是可以使用的 
class myCmp{
public:
    bool operator () (const Node& a,const Node& b)
    {
        return a.data < b.data;
    }
};
*/
int main()
{
    priority_queue
<Node,vector<Node>,myCmp> PQ;
    
set<Node,myCmp> S;
    Node arr[
6]={1,-1,2,-2,3,-3};
    sort(arr,arr
+6,myCmp());
}
只有注册用户登录后才能发表评论。