c#冒泡排序正解!

來源:互聯網
上載者:User
今天,一個朋友問我冒泡排序的例子,因為正忙著,就告訴他網上有很多的例子,讓他自己搜下,後來他又發訊息給我,這可把我恨的啊。
這不是誤人前程麼
下面我們來看看網上的冒泡排序例子: 1public void Sort(int[] list)
 2   {
 3      while(j<list.Length)
 4      {
 5       for(i=0;i<list.Length-1;i++)
 6       {
 7         if(list[i]>list[i+1])
 8        {
 9          temp=list[i];
10         list[i]=list[i+1];
11          list[i+1]=temp;
12         }
13      }
14     j++;
15    }
16

這個例子中,我想問,這個j幹啥用了?我上網看了下,和這個一摸一樣的例子還特別多。
真是害人不淺啊 !
無奈,只能動手寫個了。
下面是正解。簡單的例子:protected int[] bubbleUp(int[] Array)
    {
        for (int i = 0; i < Array.Length; i++)
        {
            for (int j = i+1; j < Array.Length; j++)
            {
                if (Array[i] > Array[j])
                {
                    int temp=Array[i];
                    Array[i]=Array[j];
                    Array[j] = temp;
                }
            }
        }
        return Array;
    }

希望對不瞭解冒泡排序的朋友有所協助!
詳細參考:http://www.cnblogs.com/emanlee/archive/2008/04/28/1174071.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.