vector 的自定义排序方法

#include
#include
#include
using namespace std;
 
bool compare(const pair A, const pair B) {
    return A.second < B.second;//升序排列
}

 
int main()
{
    pair a, b, c;
    vector> vs;
    vs.pushback(a);
    vs.pushback(b);
    vs.pushback(c);
    sort(vs.begin(), vs.end(), compare);

    return 0;
}

 

你可能感兴趣的:(编程)