golang實現直接插入排序演算法

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

直接插入排序演算法golang實現版本:

插入演算法概要:

建立一個空的鏈表,首先在要排序的數組中隨便拿出來一個資料,放在建立鏈表的開頭,然後不停的從原數組中

擷取資料,並和鏈表中的資料進行比較,大就放在鏈表的右端,小就放在鏈表的左端,一直迴圈直到結束為止,

排序完成。


package mainimport("container/list""fmt")var old []int = []int{432,432432,4234,333,333,21,22,3,30,8,20,2,7,9,50,80,1,4}func main(){fmt.Println("old array:",old)res,_ := InsertionSort(old)i := 0for e := res.Front(); nil != e; e = e.Next(){//fmt.Println("[", i,"]: ",e.Value.(int))fmt.Printf("[%d]: %d\n",i, e.Value.(int))i += 1}}func InsertionSort(old []int)(sortedData *list.List, err error){sortedData = list.New()sortedData.PushBack(old[0])size := len(old)for i := 1; i < size; i++{v := old[i]e := sortedData.Front()for nil != e{if e.Value.(int) >= v{sortedData.InsertBefore(v, e)break}e = e.Next()}//the biggest,put @v on the back of the listif nil == e{sortedData.PushBack(v)}}return}


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.