本帖最後由 陳品肇 於 2019-3-9 17:21 編輯
利用氣泡排序法, 將陣列中的成員由大而小依序排列.
排列前: r[4]={-32,45,5,-67}
排列後: r[4]={45,5,-32,-67}- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int tmp;
- int n[4]={-32,45,5,-67};
- cout<<"排序前: ";
- for(int i=0; i<4; i++)
- cout<<n[i]<<" ";
- for(int i=3; i>0; i--)
- {
- for(int j=i-1; j>=0; j--) //我把陣列後的數值與當前去做比較
- {
- if(n[j]<n[i])
- {
- tmp=n[i];
- n[i]=n[j];
- n[j]=tmp;
- }
- }
- }
- cout<<endl;
- cout<<"排序後: ";
- for(int i=0; i<4; i++)
- cout<<n[i]<<" ";
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |