返回列表 發帖

排序 (一)

本帖最後由 tonyh 於 2017-6-24 14:44 編輯

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

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

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int tmp;
  7.     int n[]={0,-12,56,87,7,32};
  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 a[6]={5662,627,618,53,21,147};
  7.         int backup;
  8.         cout<<"BEFORE: ";
  9.     for(int i=0; i<6; i++)
  10.        cout<<a[i]<<" ";
  11.        cout<<endl;
  12.     for(int i=0; i<=5; i++)
  13.     {
  14.               for(int j=i+1; j<=5; j++)
  15.        {
  16.                if(a[i]>=a[j])
  17.                {
  18.                          backup=a[j];
  19.                          a[j]=a[i];
  20.                          a[i]=backup;
  21.                    }
  22.            }
  23.         }
  24.     cout<<"AFTER: ";
  25.     for(int i=0; i<6; i++)
  26.        cout<<a[i]<<" ";
  27.        cout<<endl;  
  28.       
  29.       
  30.     system("pause");
  31.     return 0;
  32. }
複製代碼

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. }
複製代碼
我是眾神之王XXX  I love you
0000000000

TOP

返回列表