sort排序
程序员文章站
2022-05-12 17:48:38
...
sort排序在写代码的时候很方便,相对于快排来说;sort排序比冒泡要快;sort排序默认的排序的方式是从升序排序,要是需要进行倒序排序只需要加上一个函数即可,下面是模板:
sort升序模板
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
int a[10]={56,23,59,89,45,49,64,563,98,41};
sort(a,a+10);
for(int i=0; i<10; i++)
cout << a[i] <<" ";
return 0;
}
sort降序模板
#include<iostream>
#include<algorithm>
using namespace std;
bool cmp(int a,int b)
{
return a>b;
}
int main()
{
int a[10]={56,23,59,89,45,49,64,563,98,41};
sort(a,a+10,cmp);
for(int i=0; i<10; i++)
cout << a[i] <<" ";
count << endl;
return 0;
}