码迷,mamicode.com
首页 > 编程语言 > 详细

sort排序实现

时间:2017-07-02 13:07:32      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:can   span   include   turn   compare   i++   print   规则   定义   

//使用stl中的sort排序  定义compare函数  或进行< 操作符重载 
#include<stdio.h>
#include<algorithm>
using namespace std;
bool cmp(int x,int y){//定义排序规则 
    return x>y; 
} 
int main(){
    int n;int buf[100];
    while(scanf("%d",&n)!=EOF){
        for(int i=0;i<n;i++){
            scanf("%d",&buf[i]);
        }
        sort(buf,buf+n,cmp);
        for(int i=0;i<n;i++){
              printf("%d ",buf[i]);
        }
        printf("\n");
    }
    return 0;
}

 

sort排序实现

标签:can   span   include   turn   compare   i++   print   规则   定义   

原文地址:http://www.cnblogs.com/Elaine-DWL/p/7105697.html

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