1. 程式人生 > >c++ sort用法 學習筆記

c++ sort用法 學習筆記

降序排序 class span esp cmp 描述 space iostream 排序函數

c++ sort排序函數,需要加庫#include<algorithm>,語法描述:sort(begin,end,cmp),cmp參數可以沒有,如果沒有默認非降序排序。

首先是升序排序:

#include<iostream>
#include<algorithm>//函數庫
#include<cstring>
using namespace std;
int main()
{
    int a[6]={6,5,4,3,2,1};
    for(int i=0;i<6;i++)
    {
        sort(a,a
+6);//調用c++sort函數 cout<<a[i]<< ; } return 0; }

sort(名稱,名稱+排序數量)

c++ sort用法 學習筆記