Board logo

標題: 排序 (一) [打印本頁]

作者: tonyh    時間: 2017-7-1 15:26     標題: 排序 (一)

本帖最後由 tonyh 於 2020-3-13 15:13 編輯

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



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

作者: 蕭澧邦    時間: 2017-7-8 14:11

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

作者: 許紘誌    時間: 2017-7-8 14:13

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

作者: 洪榜蔓    時間: 2017-7-8 14:16

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

作者: 黃宥鈞    時間: 2017-7-8 14:23

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int y;
  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=0; j<6; j++)
  15.          {
  16.               if(n[j]>n[i])
  17.               {
  18.                   y=n[i];
  19.                   n[i]=n[j];
  20.                   n[j]=y;
  21.               }
  22.          }
  23.     }
  24.     for(int i=0; i<6; i++)
  25.         cout<<n[i]<<" ";
  26.     cout<<endl;
  27.     system("pause");
  28.     return 0;   
  29. }
複製代碼

作者: 譚暐霖    時間: 2017-7-8 14:30

  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<<"Before: ";
  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<<"After: ";
  25.     for(int i=0; i<6; i++)
  26.         cout<<n[i]<<" ";
  27.     cout<<endl;
  28.     system("pause");
  29.     return 0;
  30. }
複製代碼

作者: 蔡幸融    時間: 2017-7-22 10:32

  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.     {
  11.         cout<<n[i]<<" ";      
  12.     }
  13.     cout<<endl;
  14.     for(int i=0; i<5; i++)
  15.     {
  16.          for(int j=i+1; j<6; j++)
  17.          {
  18.              if(n[j]<n[i])
  19.              {
  20.                  tmp=n[j];
  21.                  n[j]=n[i];
  22.                  n[i]=tmp;         
  23.              }   
  24.          }
  25.     }
  26.     cout<<"排序後: ";
  27.     for(int i=0; i<6; i++)
  28.     {
  29.         cout<<n[i]<<" ";
  30.     }
  31.     cout<<endl;
  32.    
  33.     system("pause");
  34.     return 0;   
  35. }
複製代碼





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