Go Example--自定义排序
Posted promenader
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go Example--自定义排序相关的知识,希望对你有一定的参考价值。
package main
import (
"fmt"
"sort"
)
//定义类型别名
type ByLength []string
func (s ByLength) Len() int {
return len(s)
}
func (s ByLength) Swap(i, j int) {
s[i], s[j] = s[j], s[i]
}
func (s ByLength) Less(i, j int) bool {
return len(s[i]) < len(s[j])
}
func main() {
fruits := []string{"peach", "banana", "kiwi"}
//强制转换类型,ByLength实现了Interface接口
sort.Sort(ByLength(fruits))
fmt.Println(fruits)
}
以上是关于Go Example--自定义排序的主要内容,如果未能解决你的问题,请参考以下文章