詳解Sort函數降序排序-c++


C++中Sort函數

c++中的Sort函數默認排序為程序,那么怎么改成降序呢?

自己編寫Compare函數

#include <cstdio>
#include <iostream>
#include <algorithm>
using namespace std;
bool compare(int a, int b) {
    return a < b;
}
int main()
{
    int n;
    cin >> n;
    int a[1001];
    for (int i = 0; i < n; i ++) {
        cin >> a[i];
    }
    cout << "input is:" << endl;
    for (int i = 0; i < n; i++) {
        cout << a[i] << " ";
    }
    cout << endl;
    sort (a, a + n, compare);
    for (int i = 0; i < n; i++) {
        cout << a[i] << " ";
    }
    cout << endl;
    return 0;
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM