1. 程式人生 > >基於visual Studio2013解決面試題之1401氣泡排序

基於visual Studio2013解決面試題之1401氣泡排序

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow

也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!

                


題目



解決程式碼及點評

[cpp] view plain copy print
?
  1.   
[cpp] view plain copy print ?
  1.   
[cpp] view plain copy print ?
  1. <code class="language-cpp">/* 
  2.     氣泡排序
     
  3. */  
  4. #include <iostream>  
  5. using namespace std;  
  6.   
  7. int main()  
  8. {  
  9.     int a[10];  
  10.     for(int i=0;i<10;i++)  
  11.         a[i]=rand()%100;  
  12.     for(int i=0;i<10;i++)  
  13.         for(int j=0;j<10-i;j++)  
  14.         {  
  15.             if(a[j]<a[j+1])  
  16.             {  
  17.                 int temp=a[j];  
  18.                 a[j]=a[j+1];  
  19.                 a[j+1]=temp;  
  20.             }  
  21.         }  
  22.         for(int i=0;i<10;i++)  
  23.             cout<<a[i]<<" ";  
  24.         system("pause");  
  25.   
  26.         return 0;  
  27. }  
  28.   
  29.   
  30. </code>  
/* 氣泡排序*/#include <iostream>using namespace std;int main()int a[10]; for(int i=0;i<10;i++)  a[i]=rand()%100for(int i=0;i<10;i++)  for(int j=0;j<10-i;j++)  {   if(a[j]<a[j+1])   {    int temp=a[j];    a[j]=a[j+1];    a[j+1]=temp;   }  }  for(int i=0;i<10;i++)   cout<<a[i]<<" ";  system("pause");  return 0;}


程式碼下載及其執行

程式碼下載地址:http://download.csdn.net/detail/yincheng01/6704519

解壓密碼:c.itcast.cn


下載程式碼並解壓後,用VC2013開啟interview.sln,並設定對應的啟動專案後,點選執行即可,具體步驟如下:

1)設定啟動專案:右鍵點選解決方案,在彈出選單中選擇“設定啟動專案”


2)在下拉框中選擇相應專案,專案名和部落格編號一致

3)點選“本地Windows偵錯程式”執行


程式執行結果




               

給我老師的人工智慧教程打call!http://blog.csdn.net/jiangjunshow

這裡寫圖片描述