C++ sort函数的用法

C++ sort函数的用法

STL有个排序函数sort,可以直接对数组和向量排序。

一、功能:给定区间所有元素进行排序

二、头文件: #include <algorithm>

三、sort函数的参数:可以传两个参数或三个参数。

第一个参数:要排序的区间首地址,

第二个参数:区间尾地址的下一地址。也就是说,排序的区间是[a,b)。

例如:数组int a[100],sort(a,a+100)是对从a[0]到a[99]的元素进行排序,默认的排序方式是升序。 对向量v排序:sort(v.begin(),v.end());

排序的数据类型不局限于整数,只要是定义了小于运算的类型都可以,比如字符串类string。

第三参数:比较函数。如果是没有定义小于运算的数据类型,或者想改变排序的顺序,就要用到第三参数的比较函数。比较函数是一个自己定义的函数,返回值是bool型,它规定了什么样的关系才是“小于”。

四、排序方法:

1、整数数组降序排序

定义一个比较函数: bool cmp(int a, int b) { return a>b; }

排序: sort(a,a+100,cmp);

2、结构体数组排序

例如: 如下结构体node数组

struct node{ int a; int b; double c;}

node arr[100],

要求对数组arr进行排序:先按a值升序排列,如果a值相同,再按b值降序排列,如果b还相同,就按c降序排列。定义如下一个比较函数:

bool cmp(node x,node y)

{ if (x.a!=y.a) return x.a>y.a;

If (x.b!=y.b) return x.b>y.b;

return return x.c>y.c; }

sort(arr,a+100,cmp);

五、程序示例:

#include<stdio.h>

#include<algorithm>

#include<string>

using namespace std;

struct product

{ char name[16];

float price;

};

int array_int[5]={4,1,2,5,3};

char array_char[5]={‘a‘,‘c‘,‘b‘,‘e‘,‘d‘};

double array_double[5]={1.2,2.3,5.2,4.6,3.5};

//结构比较函数(按照结构中的浮点数值进行排序)

bool compare_struct_float(const product &a,const product &b){

return a.price<b.price;

}

//结构比较函数(按照结构中的字符串进行排序)

bool compare_struct_str(const product &a,const product &b){

return string(a.name)<string(b.name);

}

//打印函数

void print_int(const int* a,int length){

printf("升序排序后的int数组:\n");

for(int i=0; i<length-1; i++)

printf("%d ",a[i]);

printf("%d\n",a[length-1]);

}

void print_char(const char* a,int length){

printf("升序排序后的char数组:\n");

for(int i=0; i<length-1; i++)

printf("%c ",a[i]);

printf("%c\n",a[length-1]);

}

void print_double(const double* a,int length){

printf("升序排序后的dobule数组:\n");

for(int i=0; i<length-1; i++)

printf("%.2f ",a[i]);

printf("%.2f\n",a[length-1]);

}

void print_struct_array(struct product *array, int length)

{

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

printf("[ name: %s \t price: $%.2f ]\n", array[i].name, array[i].price);

puts("--");

}

int main()

{

struct product structs[] = {

{"mp3 player", 299.0f}, {"plasma tv", 2200.0f},

{"notebook", 1300.0f}, {"smartphone", 499.99f},

{"dvd player", 150.0f}, {"matches", 0.2f } };

//整数排序

sort(array_int,array_int+5);

print_int(array_int,5);

//字符排序

sort(array_char,array_char+5);

print_char(array_char,5);

//浮点排序

sort(array_double,array_double+5);

print_double(array_double,5);

//结构中浮点排序

int len = sizeof(structs)/sizeof(struct product);

sort(structs,structs+len,compare_struct_float);

printf("按结构中float升序排序后的struct数组:\n");

print_struct_array(structs, len);

//结构中字符串排序

sort(structs,structs+len,compare_struct_str);

printf("按结构中字符串升序排序后的struct数组:\n");

print_struct_array(structs, len);

}

C++ sort函数的用法

时间: 2024-10-08 11:02:10

C++ sort函数的用法的相关文章

C/C++ sort函数的用法

sort函数的用法(#include<algorithm>) 做ACM题的时候,排序是一种经常要用到的操作.如果每次都自己写个冒泡之类的O(n^2)排序,不但程序容易超时,而且浪费宝贵的比赛时间,还很有可能写错.STL里面有个sort函数,可以直接对数组排序,复杂度为n*log2(n).使用这个函数,需要包含头文件.    这个函数可以传两个参数或三个参数.第一个参数是要排序的区间首地址,第二个参数是区间尾地址的下一地址.也就是说,排序的区间是[a,b).简单来说,有一个数组int a[100

C++sort()函数的用法

C++sort()函数的用法 (一)为什么要用c++标准库里的排序函数 Sort()函数是c++一种排序方法之一,学会了这种方法也打消我学习c++以来使用的冒泡排序和选择排序所带来的执行效率不高的问题!因为它使用的排序方法是类似于快排的方法,时间复杂度为n*log2(n),执行效率较高! (二)c++标准库里的排序函数的使用方法 I)Sort函数包含在头文件为#include<algorithm>的c++标准库中,调用标准库里的排序方法可以不必知道其内部是如何实现的,只要出现我们想要的结果即可

c++sort函数的用法浅析

(一)为什么要用c++标准库里的排序函数 Sort()函数是c++一种排序方法之一,学会了这种方法也打消我学习c++以来使用的冒泡排序和选择排序所带来的执行效率不高的问题!因为它使用的排序方法是类似于快排的方法,时间复杂度为n*log2(n),执行效率较高! (二)c++标准库里的排序函数的使用方法 I)Sort函数包含在头文件为#include<algorithm>的c++标准库中,调用标准库里的排序方法可以不必知道其内部是如何实现的,只要出现我们想要的结果即可! II)Sort函数有三个参

STL之sort函数的用法

说明:本文仅供学习交流,转载请标明出处,欢迎转载! STL封装了一个排序算法,该算法相应的头文件为#include<algorithm>,我们能够依据须要对一个数组进行排序或者降序. sort的函数原型为: void sort(b,e,pre=up),表示对[b,e)的元素进行排序,第三个參数为一个谓词,我们能够自己定义排序方式,默认排序方式为升序排序. 详细实现代码例如以下: #include<iostream> #include<vector> #include&l

STL sort函数的用法

sort在STL库中是排序函数,有时冒泡.选择等O(N^2)算法会超时时,我们可以使用STL中的快速排序O(N log N)完成排序 sort在<algorithm>库里面,原型如下: template <class RandomAccessIterator> void sort ( RandomAccessIterator first, RandomAccessIterator last ); template <class RandomAccessIterator, cl

【转】sort函数用法

近来看了c++标准库这本书,学到了很多,就把这其中的一点C++sort()函数的用法写下来和大家分享吧! (一)为什么要用c++标准库里的排序函数 Sort()函数是c++一种排序方法之一,学会了这种方法也打消我学习c++以来使用的冒泡排序和选择排序所带来的执行效率不高的问题!因为它使用的排序方法是类似于快排的方法,时间复杂度为n*log2(n),执行效率较高! (二)c++标准库里的排序函数的使用方法 I)Sort函数包含在头文件为#include<algorithm>的c++标准库中,调用

SORT函数的使用方法(转载)

sort函数的用法(转载出处:http://blog.sina.com.cn/s/blog_6439f26f01012xw3.html) 做ACM题的时候,排序是一种经常要用到的操作.如果每次都自己写个冒泡之类的O(n^2)排序,不但程序容易超时,而且浪费宝贵的比赛时间,还很有可能写错.STL里面有个sort函数,可以直接对数组排序,复杂度为n*log2(n).使用这个函数,需要包含头文件.    这个函数可以传两个参数或三个参数.第一个参数是要排序的区间首地址,第二个参数是区间尾地址的下一地址

C++ sort函数用法

参考文档:http://hi.baidu.com/posinfo/item/dc3e73584c535cc9d2e10c27 C++ sort函数用法 FROM:http://hi.baidu.com/blackdemonfish/blog/item/e2c1d655d702a45ed0090652%2Ehtml 最近算法作业经常需要排序.偶是一个很懒的人,于是一直用C++的sort进行排序---不少同志对此心存疑虑,所以今天就写一写sort的用法.声明:此用法是从某大牛的程序中看到的,其实偶只

sort函数用法

头文件: #include <algorithm> using namespace std; 1.默认的sort函数是按升序排序. sort(a,a+n);                //两个参数分别为待排序数组的首地址和尾地址 2.可以自己写一个cmp函数,按特定意图进行排序. 例如 : 1).对数组a降序排序 int cmp( const int &a, const int &b ){ if( a > b ) return 1; else return 0; }