Board logo

標題: [隨堂測驗] 自定排序 (三) [打印本頁]

作者: 鄭繼威    時間: 2024-1-17 19:15     標題: [隨堂測驗] 自定排序 (三)

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

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

[attach]17591[/attach]


本帖隱藏的內容需要回復才可以瀏覽

作者: 李宗儒    時間: 2024-1-22 18:52

RRRRRRRRRRRRRRRRRRR
作者: 李宗儒    時間: 2024-1-22 18:56

  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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2