Golang語言排序的幾種方式
1.Ints,float64s,strings
使用以如函數實現基本類型
- sort.Ints
- sort.Float64s
- sort.Strings
s := []int{4, 2, 3, 1}
sort.Ints(s)
fmt.Println(s) // [1 2 3 4]
2.結構體自定義排序
- 使sort.Slice用函數,它使用提供了less(i int,j int)函數返回布爾值,對切片進行排序
- 若要在保持相等元素的原始順序的同時對切片進行排序,請使用sort.SliceStable函數
family := []struct {
Name string
Age int
}{
{"Alice", 23},
{"David", 2},
{"Eve", 2},
{"Bob", 25},
}
// Sort by age, keeping original order or equal elements.
sort.SliceStable(family, func(i, j int) bool {
return family[i].Age < family[j].Age
})
fmt.Println(family) // [{David 2} {Eve 2} {Alice 23} {Bob 25}]
3.結構體自定義排序2
- 使用通用sort.Sort 和sort.Stable functions排序功能
- 對要排序的集合要實現sort.Interface接口
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)
}
一個簡單的例子:
type Person struct {
Name string
Age int
}
// ByAge implements sort.Interface based on the Age field.
type ByAge []Person
func (a ByAge) Len() int { return len(a) }
func (a ByAge) Less(i, j int) bool { return a[i].Age < a[j].Age }
func (a ByAge) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
func main() {
family := []Person{
{"Alice", 23},
{"Eve", 2},
{"Bob", 25},
}
sort.Sort(ByAge(family))
fmt.Println(family) // [{Eve 2} {Alice 23} {Bob 25}]
}
4.map排序
map是鍵值對是一個無序集合。如果需要穩定的迭代順序,則必須維護獨立的數據結構
比如:
m := map[string]int{"Alice": 2, "Cecil": 1, "Bob": 3}
keys := make([]string, 0, len(m))
for k := range m {
keys = append(keys, k)
}
sort.Strings(keys)
for _, k := range keys {
fmt.Println(k, m[k])
}
// Output:
// Alice 2
// Bob 3
// Cecil 1
最後
最近在寫基於Golang的工具和框架,還請多多Star.
YoyoGo是一個用 Go 編寫的簡單,輕便,快速的 微服務框架,目前已實現了Web框架的能力,但是底層設計已支持多種服務架構。
Github
//github.com/yoyofx/yoyogo
//github.com/yoyofxteam