sort运用

Posted yifeianyi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sort运用相关的知识,希望对你有一定的参考价值。

#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运用的主要内容,如果未能解决你的问题,请参考以下文章

[原创]java WEB学习笔记61:Struts2学习之路--通用标签 property,uri,param,set,push,if-else,itertor,sort,date,a标签等(代码片段

js数组的实例方法sort() 排序方法的运用,不再只是.sort()

sort命令详解及Nginx统计运用

sort运用

代码片段 - Golang 实现集合操作

List sort运用小demo实战