sort包是Go语言中用于排序操作的标准包,提供了对切片和用户自定义数据类型的排序功能。
sort包中最常用的函数是sort.Slice和sort.Sort。
示例代码:
import "sort"
func main() {
numbers := []int{5, 2, 6, 3, 1, 4}
sort.Slice(numbers, func(i, j int) bool {
return numbers[i] < numbers[j]
})
fmt.Println(numbers) // 输出:[1 2 3 4 5 6]
}
示例代码:
import "sort"
type Person struct {
Name string
Age int
}
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() {
people := []Person{
{"Alice", 26},
{"Bob", 31},
{"Charlie", 23},
}
sort.Sort(ByAge(people))
fmt.Println(people) // 输出:[{Charlie 23} {Alice 26} {Bob 31}]
}
除了sort.Slice和sort.Sort函数外,sort包还提供了其他一些有用的函数,如sort.IsSorted用于判断切片是否已经排好序,sort.Search用于在已排序的切片中查找特定元素的位置等。
希望以上信息对你有帮助!