返回列表 發帖

[隨堂測驗] 自定排序 (三)

本帖最後由 鄭繼威 於 2024-1-22 18:52 編輯

試運用 sort() 函式,搭配一個自定義的比較方法,對陣列做遞減排序。




本帖隱藏的內容需要回復才可以瀏覽
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. #include<algorithm>
  5. using namespace std;

  6. bool jay(float x,float y)
  7. {
  8.     return x>y;
  9. }
  10. int main()
  11. {
  12.     srand(time(NULL));
  13.     float n[5];
  14.     for (int i=0;i<=4;i++)
  15.         {
  16.         n[i]=rand()%100/10.0;
  17.         cout<<n[i]<<" ";
  18.         }
  19.         cout<<endl;
  20.       sort(n,n+5,jay);
  21.     for (int i=0;i<=4;i++)
  22.         {
  23.         cout<<n[i]<<" ";
  24.         }
  25. }
複製代碼

TOP

RRRRRRRRRRRRRRRRRRR

TOP

返回列表