這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。
這個演算法還是我考研的時候看懂的。插入排序大體有兩種,頭插法和尾插法。區別就是插入的位置是頭部還是尾部。
簡單說一下插入排序的思路:
- 從第二個元素開始遍曆,第一個元素認為是有序的;
- 將要插入的元素依次與已有序隊列比較,插入到合適的位置;
- 迴圈執行,直到遍曆結束。
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)}
本文所涉及到的完整源碼請參考。
原文連結:Go語言的插入排序實現,轉載請註明來源!