码迷,mamicode.com
首页 > 其他好文 > 详细

sort运用

时间:2020-01-13 20:21:33      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:stream   cout   names   ace   ==   algo   scan   cin   fclose   

#include<iostream>
#include<algorithm>
#include<cstdio> 
using namespace std;
struct Node{
    int x,y;
}a[100];
int n;
//比较函数 
int cmp(Node a,Node b){
    if(a.x==b.x)return a.y<b.y;
    return a.x<b.x;
} 
void Scanf(){
    cin>>n;
    for(int i=0;i<n;i++){
        cin>>a[i].x>>a[i].y;
    }
}
void Print(){
    for(int i=0;i<n;i++){
        cout<<a[i].x<<" "<<a[i].y<<endl;
    }
}
int main(){
//    freopen("text1.txt","r",stdin);
    Scanf();
    sort(a,a+n,cmp);
    Print();
//    fclose(stdin);
    return 0;
}

sort运用

标签:stream   cout   names   ace   ==   algo   scan   cin   fclose   

原文地址:https://www.cnblogs.com/yifeianyi/p/12188687.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!