sort函式的使用
阿新 • • 發佈:2020-08-08
c++sort函式的使用總結
sort類函式:
函式名 | 功能描述 |
---|---|
sort | 對給定區間所有元素進行排序 |
stable_sort | 對給定區間所有元素進行穩定排序 |
partial_sort | 對給定區間所有元素部分排序 |
partial_sort_copy | 對給定區間複製並排序 |
nth_element | 找出給定區間的某個位置對應的元素 |
is_sorted | 判斷一個區間是否已經排好序 |
partition | 使得符合某個條件的元素放在前面 |
stable_partition | 相對穩定的使得符合某個條件的元素放在前面 |
需要標頭檔案<algorithm>
語法描述:sort(begin,end,cmp),cmp引數可以沒有,如果沒有預設非降序排序。
預設情況下例子:以int型別的資料為例子
#include<iostream> #include<algorithm> #include<cstring> using namespace std; int main() { int a[5]={1,3,4,2,5}; sort(a,a+5); for(int i=0;i<5;i++) cout<<a[i]<<' '; return0; }
functional提供了一堆基於模板的比較函式物件。它們是:equal_to<Type>、not_equal_to<Type>、greater<Type>、greater_equal<Type>、less<Type>、less_equal<Type>。
- 升序:sort(begin,end,less<data-type>());
- 降序:sort(begin,end,greater<data-type>()).
#include<iostream> #include<bits/stdc++.h> usingnamespace std; int main(){ int a[5]={1,3,4,2,5}; sort(a,a+5); for (int i = 0; i < 5; i++) { cout<<a[i]<<" ";//1 2 3 4 5 } cout<<endl; sort(a,a+5,less<int>() ); for (int i = 0; i < 5; i++) { cout<<a[i]<<" ";//1 2 3 4 5 } cout<<endl; sort(a,a+5,greater<int>() ); for (int i = 0; i < 5; i++) { cout<<a[i]<<" ";//5 4 3 2 1 } }
輸出結果:
1 2 3 4 5
1 2 3 4 5
5 4 3 2 1
引用資料型別string的使用
#include<iostream> #include<algorithm> #include<cstring> using namespace std; int main() { string str("hello world"); sort(str.begin(),str.end()); cout<<str; return 0; }
結果:空格dehllloorw
使用反向迭代器可以完成逆序排序
#include<iostream> #include<algorithm> #include<cstring> using namespace std; int main() { string str("hello world"); sort(str.rbegin(),str.rend()); cout<<str; return 0; }
結果:wroolllhde空格
字串間的比較排序
#include<iostream> #include<cstring > #include<algorithm> using namespace std; int main() { string a[4]; for(int i=0;i<4;i++) getline(cin,a[i]); sort(a,a+4); for(int i=0;i<4;i++) cout<<a[i]<<endl; return 0; }
以結構體為例的二級排序
#include<iostream> #include<algorithm> #include<cstring> using namespace std; struct link { int a,b; }; bool cmp(link x,link y) { if(x.a==y.a) return x.b>y.b; return x.a>y.a; } int main() { link x[4]; for(int i=0;i<4;i++) cin>>x[i].a>>x[i].b; sort(x,x+4,cmp); for(int i=0;i<4;i++) cout<<x[i].a<<' '<<x[i].b<<endl; return 0; }
多條件排序(二級):
class Solution { #define N 10010 int bit[N]; public: int get(int x){ int res=0; while (x) res+=x&1,x>>=1; return res; } vector<int> sortByBits(vector<int>& arr) { for (auto x:arr) bit[x]=get(x); sort(arr.begin(),arr.end(),[&](int x,int y){ return bit[x]==bit[y]?x<y:bit[x]<bit[y]; }); return arr; } };