首页 > 编程语言 > 详细

直接插入排序(go实现)

时间:2017-10-30 20:56:45      阅读:328      评论:0      收藏:0      [点我收藏+]
package main

import "fmt"

func main() {
    arr := []int{11, 2, 7, 11, 88, 91, 23, 14, 12, 33}
    straightInsertSort(arr)
    for i :=0 ; i < len(arr); i++ {
        fmt.Println(arr[i])
    }
}

func straightInsertSort(unsorted []int) {
    for i := 1; i < len(unsorted); i++ {
        if unsorted[i-1] > unsorted[i] {
            temp := unsorted[i]
            var j int
            for j = i - 1; j >= 0 && unsorted[j] > temp; j-- {
                unsorted[j+1] = unsorted[j]
            }
            unsorted[j+1] = temp
        }
    }
}


直接插入排序(go实现)

原文:http://11317783.blog.51cto.com/11307783/1977408

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!