歸併排序,自頂向下與自底向上兩種方式(golang實現)

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

封裝成函數:

//自頂向下歸併排序func MergeSortUpToDown(s []int) {    aux := make([]int, len(s)) //輔助切片    mergeSortUpToDown(s, aux, 0, len(s)-1)} //自底向上歸併排序func MergeSortDownToUp(s []int) {    aux := make([]int, len(s)) //輔助切片    n := len(s)    for sz := 1; sz < n; sz *= 2 {        for lo := 0; lo < n-sz; lo += 2 * sz {            merge(s, aux, lo, lo+sz-1, min(lo+2*sz-1, n-1))        }    }} func mergeSortUpToDown(s, aux []int, lo, hi int) {    if lo >= hi {        return    }    mid := (lo + hi) >> 1    mergeSortUpToDown(s, aux, lo, mid)    mergeSortUpToDown(s, aux, mid+1, hi)    merge(s, aux, lo, mid, hi)} //歸併操作func merge(s, aux []int, lo, mid, hi int) {    for k := lo; k <= hi; k++ {        aux[k] = s[k]    }    i, j := lo, mid+1    for k := lo; k <= hi; k++ {        if i > mid {            s[k] = aux[j]            j++        } else if j > hi {            s[k] = aux[i]            i++        } else if aux[j] < aux[i] {            s[k] = aux[j]            j++        } else {            s[k] = aux[i]            i++        }    }} func min(i, j int) int {    if j < i {        return j    }    return i}

測試:

s := []int{9,0,6,5,8,2,1,7,4,3}fmt.Println(s)MergeSortUpToDown(s)//MergeSortDownToUp(s)fmt.Println(s)

輸出:
[9 0 6 5 8 2 1 7 4 3]
[0 1 2 3 4 5 6 7 8 9]

聯繫我們

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