转载:c++ sort用法

sort函数使用模板:

sort包含在头文件algorithm中

sort(start,end,排序方法)

1.在没有排序方法时是默认从小到大的排列,例:

#include<iostream>

#include<algorithm>

using namespace std;

int main()

{

 int a[10]={9,6,3,8,5,2,7,4,1,0};

 for(int i=0;i<10;i++)

 cout<<a[i]<<endl;

sort(a,a+10);

 for(int i=0;i<10;i++)

 cout<<a[i]<<endl;

 return 0;

}

下面来介绍一下那个排序方法也就是比较函数complare

 1 #include<iostream>
 2
 3 #include<algorithm>
 4
 5 using namespace std;
 6
 7 bool complare(int a,int b)
 8
 9 {
10
11  return a>b;
12
13 }
14
15 int main()
16
17 {
18
19  int a[10]={9,6,3,8,5,2,7,4,1,0};
20
21  for(int i=0;i<10;i++)
22
23  cout<<a[i]<<endl;
24
25  sort(a,a+10,complare);//在这里就不需要对complare函数传入参数了,//这是规则
26
27  for(int i=0;i<10;i++)
28
29  cout<<a[i]<<endl;
30
31  return 0;
32
33 }

例三:

通过上面例一、二的方法虽然实现了从大到小和从大到小的排序,这样做还是有点麻烦,因为还需要自己编写告诉程序执行何种排序的原则的函数,c++标准库强大的功能完全可以解决这种麻烦。

Sortt函数的第三个参数可以用这样的语句告诉程序你所采用的排序原则

less<数据类型>()//从小到大排序

greater<数据类型>()//从大到小排序

结合本例子,这样的就可以完成你想要的任何一种排序原则了

#include<iostream>

#include<algorithm>

using namespace std;

int main()

{

 int a[10]={9,6,3,8,5,2,7,4,1,0};

 for(int i=0;i<10;i++)

 cout<<a[i]<<endl;

sort(a,a+10,less<int>());

 for(int i=0;i<10;i++)

 cout<<a[i]<<endl;

 return 0;

}
#include<iostream>

#include<algorithm>

using namespace std;

int main()

{

 int a[10]={9,6,3,8,5,2,7,4,1,0};

 for(int i=0;i<10;i++)

 cout<<a[i]<<endl;

 sort(a,a+10,greater<int>());

 for(int i=0;i<10;i++)

 cout<<a[i]<<endl;

 return 0;

}

例四:利用sort函数还可以实现对字符的排序,排序方法大同小异,下面就把程序范例展示一下

#include<iostream>

#include<algorithm>

using namespace std;

int main()

{

 char a[11]="asdfghjklk";

 for(int i=0;i<10;i++)

 cout<<a[i]<<endl;

 sort(a,a+10,greater<char>());

 for(int i=0;i<10;i++)

 cout<<a[i]<<endl;

 return 0;

}
时间: 2024-10-28 11:14:06

转载:c++ sort用法的相关文章

sort用法

一.sort用法sort将文件的每一行作为一个单位,相互比较,比较原则是从首字符向后,依次按ASCII码值进行比较,最后将他们按升序输出.vim 1.txt 1:datadir=/aaa/zzz:2:basedir=:cc4:datadir=/sdfsfsd:dd3:basedir=/data:gg (1).-r 对分类进行次序或者比较求逆 (2).-u 删除所有复制行 (3).-n 指定分类是域上的数据分类,-n依照数值的大小排序默认是按照ASCII值进行排序,你有没有遇到过10比2小的情况.

vector中sort用法到自定义比较函数comp

从最简单的vector中sort用法到自定义比较函数comp后对结构体排序的sort算法 sort函数在使用中非常好用,也非常简单,而且效率与冒泡或者选择排序不是一个数量级.本文就sort函数在vector中的用法分为sort函数入门用法与自定义comp比较函数比较结构体这两个最基本的功能讲讲其用法: 1.sort入门: 使用sort需要包含algorithm头文件,完整代码如下 #include<iostream> #include<vector> #include<alg

排序函数sort用法简介

排序算法有很多,冒泡排序,选择排序,堆排序,快速排序,归并排序,基数排序-- 其中平均复杂度O(nlogn)的排序算法或者在某方面有特殊优势的算法在ACM中才有实际使用价值,所以上述提到的前2种大家以后就不要用了.其他排序算法大家会慢慢接触,本文主要介绍使用最多的排序函数 sort.大家可能会遇到qsort,qsort比较复杂,逐渐淡出ACMer的视线,所以不用管它. sort函数是C++标准库函数,需要包含头文件 #include <algorithm> 并声明命名空间 using name

linux命令sort用法

sort是在Linux里非常常用的一个命令,管排序的通过man sort查看sort用法 -b, --ignore-leading-blanks              ignore leading blanks -d, --dictionary-order              consider only blanks and alphanumeric characters -f, --ignore-case              fold lower case to upper c

[z] linux之sort用法

linux之sort用法 sort命令是帮我们依据不同的数据类型进行排序,其语法及常用参数格式: sort [-bcfMnrtk][源文件][-o 输出文件] 补充说明:sort可针对文本文件的内容,以行为单位来排序. 参 数:  -b   忽略每行前面开始出的空格字符.  -c   检查文件是否已经按照顺序排序.  -f   排序时,忽略大小写字母.  -M   将前面3个字母依照月份的缩写进行排序.  -n   依照数值的大小排序.  -o<输出文件>   将排序后的结果存入指定的文件. 

从最简单的vector中sort用法到自定义比较函数comp后对结构体排序的sort算法

sort函数在使用中非常好用,也非常简单,而且效率与冒泡或者选择排序不是一个数量级.本文就sort函数在vector中的用法分为sort函数入门用法与自定义comp比较函数比较结构体这两个最基本的功能讲讲其用法: 1.sort入门: 使用sort需要包含algorithm头文件,完整代码如下 #include<iostream> #include<vector> #include<algorithm>//貌似可以不用,但最好加上. using namespace std

sort() 用法

sort()用法可用来排序,主要是用于数组排序,总结了几点: 1,在排序的时候只比较第一位,如:1,11,2,22,sort 会默认这样排 2,sort 本身是给数组里的字符串排序 正序: arr.sort(function (n1,n2){ return n1-n2; }) 到序: arr.sort(function(n1,n2){ return n2-n2; })

Collections.sort()用法

Collections.sort()用法 介绍 用于对List类型数据排序. 方法一 public static <T extends Comparable<? super T>> void sort(List<T> list) { list.sort(null); } List中对象需实现Comparable接口并重写compareTo方法. 方法二 public static <T> void sort(List<T> list, Compa

转载 从最简单的vector中sort用法到自定义比较函数comp后对结构体排序的sort算法

转载自:http://www.cnblogs.com/cj695/p/3863142.html sort函数在使用中非常好用,也非常简单,而且效率与冒泡或者选择排序不是一个数量级.本文就sort函数在vector中的用法分为sort函数入门用法与自定义comp比较函数比较结构体这两个最基本的功能讲讲其用法: 1.sort入门: 使用sort需要包含algorithm头文件,完整代码如下 #include<iostream> #include<vector> #include<