Go語言的插入排序實現

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

這個演算法還是我考研的時候看懂的。插入排序大體有兩種,頭插法和尾插法。區別就是插入的位置是頭部還是尾部。

簡單說一下插入排序的思路:

  • 從第二個元素開始遍曆,第一個元素認為是有序的;
  • 將要插入的元素依次與已有序隊列比較,插入到合適的位置;
  • 迴圈執行,直到遍曆結束。

Golang包裡的實現和我上面說的嚴奶奶的有點區別。將遍曆得到的元素倒著與有序隊列依次比較。如果比有序隊列的小,交換這兩個元素。

這樣的方法和傳統的相比,插入步驟同樣都是通過從後向前依次移動實現的插入。而這個方法更加簡單一點,不需要聲明臨時變數。

package mainimport "fmt"func insertionSort(data Interface, a, b int) {for i := a + 1; i < b; i++ {for j := i; j > a && data.Less(j, j-1); j-- {data.Swap(j, j-1)}}}type BySortIndex []intfunc (a BySortIndex) Len() int      { return len(a) }func (a BySortIndex) Swap(i, j int) { a[i], a[j] = a[j], a[i] }func (a BySortIndex) Less(i, j int) bool {return a[i] < a[j]}func main() {test0 := []int{49, 38, 65, 97, 76, 13, 27, 49}insertionSort(BySortIndex(test0), 0, len(test0))fmt.Println(test0)}type Interface interface {// Len is the number of elements in the collection.Len() int// Less reports whether the element with// index i should sort before the element with index j.Less(i, j int) bool// Swap swaps the elements with indexes i and j.Swap(i, j int)}

本文所涉及到的完整源碼請參考。

  • 【1】資料結構 - 嚴蔚敏

原文連結:Go語言的插入排序實現,轉載請註明來源!

相關文章

聯繫我們

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