如何对一对整数列表进行排序?

时间:2013-11-09 04:01:10

标签: c++ list sorting std-pair

我正在尝试输入数据作为整数对的列表,按第一对值排序对,然后是第二个值,然后输出排序的对值;

#include <list>
#include <iostream>
#include <algorithm>
//experiment with list sort of pair
using namespace std;
int main (int argc, char* argv[]){
    int N,x,y;
    list< pair<int,int> >::iterator it;
    list< pair<int,int> > a; 
    cout<<" number of pairs?"<<endl;
    cin >> N;
    cout<<"enter pairs, with space between 1st and second of pair"<<endl;
    for(int i=0;i<N;++i) {
        cin >> x >> y;
        a.push_back(make_pair(x,y)); 
    }
    cout<<"sorted pairs;"<<endl;
    sort(a.begin(),a.end()); // Sorts first the x, then the y-coordinate
    for (it=a.begin(); it!=a.end(); ++it) {
        cout << " " << (*it).first << " " << (*it).second << endl;
    }
    return 0;
}

1 个答案:

答案 0 :(得分:5)

来自std::sort标头的

<algorithm>仅适用于std::list没有的随机访问迭代器。但是std::list确实有自己的排序成员函数,它使用不同的算法。

a.sort();