sort自定義排序

2021-08-17 03:35:29 字數 2046 閱讀 3015

1.sort介紹

用於c++中,對給定區間所有元素進行排序。

使用的排序方法類似於快排的方法,時間複雜度為n * log2(n),執行效率較高

標頭檔案#include< algorithm>

2.sort使用方法

sort函式有3個引數,sort(first, last,cmp)

其中,first是元素的起始位址,last是結束位址,cmp是排序的方式。對(first,last)區間內資料根據cmp的方式進行排序。也可以不寫第三個引數,此時按預設排序,從小到大進行排序。

3.

//方案1:自定義比較函式cmp

#include#includeusing namespace std;

//當b s2.age;//從年齡大到小排序

}sort(a,a + n);

//方案3:宣告比較類

//與前兩種方案同理

struct cmp

};sort(a,a + n,cmp());

例題:

/*題目1:

讀入n條學生成績記錄,包括學生姓名和總成績,要求按成績從高到低輸出n條記錄,每條記錄佔一行。(成績不會重複)

輸入:第一行讀入乙個 n ( 0#includeusing namespace std;

class student

;bool operator<(const student& s1,const student& s2)

int main()

/*題目2: 

讀入n條學生成績記錄,包括學生姓名,總成績,語文,數學和英語成績,要求按總成績從高到低輸出n條記錄,每條記錄佔一行。總成績相同時按語文成績從高到低輸出,語文成績相同時按數學成績從高到低輸出。(沒有兩個人的成績完全一樣)

輸入:第一行讀入乙個 n ( 0#includeusing namespace std;

class student

;bool operator<(const student& s1,const student& s2)

}int main()

/*題目3:

題目描述:

小明正在整理一批歷史文獻。這些歷史文獻中出現了很多日期。小明知道這些日期都在2023年1月1日至2023年12月31日。令小明頭疼的是,這些日期採用的格式非常不統一,有採用年/月/日的,有採用月/日/年的,還有採用日/月/年的。更加麻煩的是,年份也都省略了前兩位,使得文獻上的乙個日期,存在很多可能的日期與其對應。

比如02/03/04,可能是2023年03月04日、2023年02月03日或2023年03月02日。

給出乙個文獻上的日期,你能幫助小明判斷有哪些可能的日期對其對應嗎?

輸入:乙個日期,格式是」aa/bb/cc」。 (0 <= a, b, c <= 9)

輸出:輸出若干個不相同的日期,每個日期一行,格式是」yyyy-mm-dd」。多個日期按從早到晚排列。

樣例輸入

02/03/04

樣例輸出

2002-03-04

2004-02-03

2004-03-02*/

#include #include #include #include #include #include using namespace std;

int md[13] = ;

void insert(int y, int m, int d);

struct date

bool operator < (date b) const

return year < b.year;

}bool isok()//判斷日期是否合法

else

return day >= 1 && day <= md[month];

}void printdate() const

};setss;

void insert(int y, int m, int d)

}int main()

sort自定義排序

參考 例 大整數排序。對n個長度最長可達到1000的數進行排序。輸入第一行為乙個整數n,1 n 100 接下來的n行每行有乙個數,數的長度範圍為1 len 1000。每個數都是乙個正數,並且保證不包含字首零。include include include include using namespac...

sort自定義型別排序

乙個很簡單的問題,不過也磨了我好一會,在些總結記錄。1.對於不用寫自定義資料結構的情況 static int cmp const pair x,const pair y if x.second y.second return x.second y.second else return x.first...

自定義對結構體排序(sort)

大家都知道,快速排序是不穩定的排序方法。如果對於陣列 現的任意a i a j iinput 本題目包含多組輸入,請處理到檔案結束。對於每組資料,第一行有乙個正整數n 0output 對於每組資料,如果演算法是正確並且穩定的,就在一行裡面輸出 right 如果演算法是正確的但不是穩定的,就在一行裡面輸...