返回列表 發帖

排序 (一)

利用選擇排序法, 將任意6個整數, 由小而大排列出來.



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

本帖最後由 林少謙 於 2024-8-3 16:08 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     int a[]{5,6,3,1,4,2};
  8.     cout<<"排序前: ";
  9.     for(int i=0; i<=5; i++)
  10.     {
  11.         cout<<a[i]<<" ";
  12.     }

  13.     for(int i=0; i<=5; i++)
  14.     {
  15.         for(int j=0; j<=5; j++)
  16.         {
  17.             if(a[i]>a[j])
  18.             {
  19.                 x=a[j];
  20.                 a[j]=a[i];
  21.                 a[i]=x;
  22.             }
  23.         }

  24.     }
  25.     cout<<endl<<"排序後: ";
  26.     for(int i=0; i<=5; i++)
  27.     {
  28.         cout<<a[i]<<" ";
  29.     }

  30. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int t;
  7.     int a[]{-1,-100,3,59,-41,94};
  8.     cout<<"排序前: ";
  9.     for(int i=0; i<=5; i++)
  10.     {
  11.         cout<<a[i]<<" ";
  12.     }
  13.     for(int i=0;i<=5;i++){
  14.         for(int j=i+1;j<=5;j++){
  15.             if(a[i]>a[j])
  16.             {
  17.                 t=a[j];
  18.                 a[j]=a[i];
  19.                 a[i]=t;
  20.             }

  21.         }


  22.     }

  23.     cout<<endl<<"排序後: ";
  24.     for(int i=0; i<=5; i++)
  25.     {
  26.         cout<<a[i]<<" ";
  27.     }

  28.     system("pause");

  29.     return 0;

  30. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int tmp;
  7.     int n[]={12,57,-6,-32,0,23};
  8.     cout<<"排序前: ";
  9.     for(int i=0; i<6; i++)
  10.         cout<<n[i]<<" ";
  11.     cout<<endl;
  12.     for(int i=0; i<5; i++)
  13.     {
  14.         for(int j=i+1; j<6; j++)
  15.         {
  16.             if(n[j]<n[i])
  17.             {
  18.                 tmp=n[j];
  19.                 n[j]=n[i];
  20.                 n[i]=tmp;
  21.             }
  22.         }   
  23.     }
  24.     cout<<"排序後: ";
  25.     for(int i=0; i<6; i++)
  26.         cout<<n[i]<<" ";
  27.     cout<<endl;
  28.     system("pause");
  29.     return 0;
  30. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int tmp;
  7.     int a[]{5,6,3,1,4,2};
  8.     cout<<"排序前: ";
  9.     for(int i=0; i<=5; i++)
  10.     {
  11.         cout<<a[i]<<" ";
  12.     }
  13.     cout<<endl;
  14.     for(int i=0; i<=5; i++){
  15.         for(int j=0; j<=5; j++){
  16.             if(a[i]>a[j])
  17.             {
  18.                 tmp=a[j];
  19.                 a[j]=a[i];
  20.                 a[i]=tmp;
  21.             }
  22.         }
  23.     }
  24.     cout<<"排序後: ";
  25.     for(int i=0; i<=5; i++)
  26.     {
  27.         cout<<a[i]<<" ";
  28.     }
  29. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int s=0;
  7.     int n[]={12,57,-6,-32,0,23};
  8.     cout<<"排序前:";
  9.     for(int i=0;i<=5;i++){
  10.         cout<<n[i]<<" ";
  11.     }
  12.     cout<<endl<<endl;
  13.     for(int j=0;j<5;j++){
  14.         for(int k=j+1;k<=5;k++){
  15.             if(n[k]<n[j]){
  16.                 s=n[k];
  17.                 n[k]=n[j];
  18.                 n[j]=s;
  19.             }

  20.         }
  21.     }

  22.     cout<<"排序後:";
  23.     for(int i=0;i<=5;i++){
  24.         cout<<n[i]<<" ";
  25.     }

  26.     system("pause");
  27.     return 0;

  28. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int tmp;
  7.     int n[]={12,57,-6,-32,0,23};
  8.     cout<<"排序前: ";
  9.     for(int i=0; i<6; i++)
  10.         cout<<n[i]<<" ";
  11.     cout<<endl;
  12.     for(int i=0; i<5; i++)
  13.     {
  14.         for(int j=i+1; j<6; j++)
  15.         {
  16.             if(n[j]<n[i])
  17.             {
  18.                 tmp=n[j];
  19.                 n[j]=n[i];
  20.                 n[i]=tmp;
  21.             }
  22.         }
  23.     }
  24.     cout<<"排序後: ";
  25.     for(int i=0; i<6; i++)
  26.         {
  27.         cout<<n[i]<<" ";
  28.         }
  29.     cout<<endl;
  30.     system("pause");
  31.     return 0;
  32. }
複製代碼

TOP

返回列表