码迷,mamicode.com
首页 > 编程语言 > 详细

Go语言(Golang)选择排序

时间:2018-12-08 11:13:53      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:Go语言   index   UNC   amp   ++   sort   sele   sharp   imp   

package main

import (
    "fmt"
)

func SelectSort(arr *[6]int) {

    for j := 0; j < len(arr
        ) - 1; j++ {
        max := arr[j]
        maxIndex := j
    
        for i := j + 1; i < len(arr); i++ {
            if max > arr[i] {
                max = arr[i]
                maxIndex = i
            }
        }
        if maxIndex != 0 {
            arr[j], arr[maxIndex] = max, arr[j]
        }
    }
}


func main() {
    arr := [6]int{13,78,10,45,664,12}
    SelectSort(&arr)
    fmt.Println(arr)
}

 

Go语言(Golang)选择排序

标签:Go语言   index   UNC   amp   ++   sort   sele   sharp   imp   

原文地址:https://www.cnblogs.com/HouZhenglan/p/10086435.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!