標題:
[隨堂測驗] 自定排序 (三)
[打印本頁]
作者:
鄭繼威
時間:
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
#include<iostream>
#include<cstdlib>
#include<ctime>
#include<algorithm>
using namespace std;
bool jay(float x,float y)
{
return x>y;
}
int main()
{
srand(time(NULL));
float n[5];
for (int i=0;i<=4;i++)
{
n[i]=rand()%100/10.0;
cout<<n[i]<<" ";
}
cout<<endl;
sort(n,n+5,jay);
for (int i=0;i<=4;i++)
{
cout<<n[i]<<" ";
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2