golang sort 排序

前端之家收集整理的这篇文章主要介绍了golang sort 排序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
package main

import (
    "fmt"
    "sort"
)

func main() {
    d := []int{5,2,6,3,1,4} // unsorted
    sort.Sort(sort.IntSlice(d))
    fmt.Println(d)
    // Output:[1 2 3 4 5 6]

    a := []float64{5.5,2.2,6.6,3.3,1.1,4.4}
    sort.Sort(sort.Float64Slice(a))
    fmt.Println(a)
    // Output:[1.1 2.2 3.3 4.4 5.5 6.6]

    s := []string{"PHP","golang","python","C","Objective-C"}
    sort.Sort(sort.StringSlice(s))
    fmt.Println(s)
    // Output:[C Objective-C PHP golang python]
}


以上为例子,如果需要手工定义规则排序,需要定义该对象的swap函数

原文链接:https://www.f2er.com/go/191392.html

猜你在找的Go相关文章