91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中有哪些排序算法

發布時間:2021-07-07 17:09:42 來源:億速云 閱讀:156 作者:Leah 欄目:編程語言

這期內容當中小編將會給大家帶來有關C#中有哪些排序算法,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

C#排序算法之冒泡排序  

一下是C#開發出冒泡排序算法。希望能為C#語言的學習者帶來一些益處。不要忘了,學語言要花大力氣學數據結構和算法。 

using   System;             namespace   BubbleSorter     {     public   class   BubbleSorter     {     public   void   Sort(int   []   list)     {     int   i,j,temp;     bool   done=false;     j=1;     while((j<list.Length)&&(!done))     {     done=true;     for(i=0;i<list.Length-j;i++)     {     if(list[i]>list[i+1])     {     done=false;     temp=list[i];     list[i]=list[i+1];     list[i+1]=temp;     }     }     j++;     }                 }     }     public   class   MainClass     {       public   static   void   Main()     {     int[]   iArrary=new   int[]{1,5,13,6,10,55,99,2,87,12,34,75,33,47};     BubbleSorter   sh=new   BubbleSorter();     sh.Sort(iArrary);     for(int   m=0;m<iArrary.Length;m++)     Console.Write("{0}   ",iArrary[m]);       Console.WriteLine();     }     }     }

C#排序算法之選擇排序    

C#選擇排序算法主要應用在數據庫查詢和文本對比方面,應用此算法需要考慮到程序的內存占用方面的效率。一下是代碼示例:

using   System;                 namespace   SelectionSorter     {     public   class   SelectionSorter     {       private   int   min;     public   void   Sort(int   []   list)     {     for(int   i=0;i<list.Length-1;i++)     {     min=i;     for(int   j=i+1;j<list.Length;j++)     {     if(list[j]<list[min])     min=j;     }     int   t=list[min];     list[min]=list[i];     list[i]=t;     }                 }     }     public   class   MainClass     {       public   static   void   Main()     {     int[]   iArrary=new   int[]{1,5,3,6,10,55,9,2,87,12,34,75,33,47};     SelectionSorter   ss=new   SelectionSorter();     ss.Sort(iArrary);     for(int   m=0;m<iArrary.Length;m++)     Console.Write("{0}   ",iArrary[m]);       Console.WriteLine();                 }     }     }

C#排序算法之插入排序    

C#插入排序算法主要對應項目需求中的結果集插入,文本插入和數據庫插入等。下面的程序通過多態性來實現C#插入排序。

using   System;                 namespace   InsertionSorter     {     public   class   InsertionSorter     {     public   void   Sort(int   []   list)     {     for(int   i=1;i<list.Length;i++)     {     int   t=list[i];     int   j=i;     while((j>0)&&(list[j-1]>t))     {     list[j]=list[j-1];     --j;     }     list[j]=t;     }                 }     }     public   class   MainClass     {       public   static   void   Main()     {     int[]   iArrary=new   int[]{1,13,3,6,10,55,98,2,87,12,34,75,33,47};     InsertionSorter   ii=new   InsertionSorter();     ii.Sort(iArrary);     for(int   m=0;m<iArrary.Length;m++)     Console.Write("{0}",iArrary[m]);       Console.WriteLine();     }     }     }

上述就是小編為大家分享的C#中有哪些排序算法了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

开阳县| 右玉县| 德钦县| 宁夏| 文安县| 和田县| 青神县| 连云港市| 芮城县| 芒康县| 宝清县| 吴堡县| 九台市| 监利县| 大名县| 仙居县| 固原市| 东乌珠穆沁旗| 乐业县| 黄陵县| 通化县| 临猗县| 洮南市| 比如县| 邛崃市| 平果县| 桐柏县| 荣成市| 晋江市| 辽宁省| 滦平县| 乌苏市| 邵东县| 吴桥县| 揭东县| 佳木斯市| 阜新| 柳林县| 台前县| 台湾省| 临朐县|