go语言sort包笔记整理
sort包介绍
- 该包内部实现了插入排序,归并排序,堆排序和快速排序。并不对外公开,在使用的时候会自动选择高效的排序算法。外部在使用的时候需要实现sort.Interface定义的三个方法, Len():获取集合长度,Less():比较两个元素大小的,Swap():方法和交换两个元素位置。sort包对切片类型提供了完整的支持,主要包括
- 对基本数据类型切片的排序支持
- 基本数据元素查找
- 判断基本数据类型切片是否已经排好序
- 对排好序的数据集合逆序
对自定义结构体集合进行排序
package main
import (
"fmt"
"sort"
)
// 学生成绩结构体
type StuScore struct {
name string // 姓名
score int // 成绩
}
type StuScores []StuScore
//Len()获取集合长度
func (s StuScores) Len() int {
return len(s)
}
//Less(): 两个集合元素进行比较,return true不执行Swap(),false执行。
func (s StuScores) Less(i, j int) bool {
return s[i].score < s[j].score
}
//Swap()对的两个元素制定移动规则
func (s StuScores) Swap(i, j int) {
s[i], s[j] = s[j], s[i]
}
func main() {
stus := StuScores{
{"alan", 95},
{"hikerell", 91},
{"acmfly", 96},
{"leao", 90},
}
// 打印未排序的 stus 数据
fmt.Println("Default:\n\t",stus)
//StuScores 已经实现了 sort.Interface 接口 , 所以可以调用 Sort 函数进行排序
sort.Sort(stus)
// 判断是否已经排好顺序,将会打印 true
fmt.Println("IS Sorted?\n\t", sort.IsSorted(stus))
// 打印排序后的 stus 数据
fmt.Println("Sorted:\n\t",stus)
}
sort包的相关函数
- sort.Reverse():可以允许将数据按 Less() 定义的排序方式逆序排序,而不必修改 Less() 代码。
例如sort.Sort(sort.Reverse(stus))实现逆序。
//内部实现
// 定义了一个 reverse 结构类型,嵌入 Interface 接口
type reverse struct {
Interface
}
//内部的Less()与自定义的Less()有着相反的逻辑
func (r reverse) Less(i, j int) bool {
return r.Interface.Less(j, i)
}
// 返回新的实现 Interface 接口的数据类型
func Reverse(data Interface) Interface {
return &reverse{data}
}
//把stus传入到Recerse()方法中,返回在reverse结构体中的Interface,然会外部调用Less的时候实际上是调用reverse结构体实现的Less方法,这个Less()方法与外部的有着相反的逻辑
sort.Sort(sort.Reverse(stus))//
fmt.Println(stus)
- sort.Search():
//方法定义
func Search(n int, f func(int) bool) int
//该方法会使用“二分查找”算法来找出能使 f(x)(0<=x<n) 返回 ture 的最小值 i。 前提条件 : f(x)(0<=x<i) 均返回 false, f(x)(i<=x<n) 均返回 ture。 如果不存在 i ,则返回 n。
x := 11
s := []int{3, 6, 8, 11, 45} // 注意已经升序排序
pos := sort.Search(len(s), func(i int) bool { return s[i] >= x })
if pos < len(s) && s[pos] == x {
fmt.Println(x, " 在 s 中的位置为:", pos)
} else {
fmt.Println("s 不包含元素 ", x)
}
sort包已经支持的内部数据类型排序
-
IntSlice 类型及[]int 排序
-
内部实现
//IntSlice 类型及[]int 排序 //由于[]int 切片排序内部实现及使用方法与[]float64 和[]string 类似,所以只详细描述该部分。 //sort包定义了一个 IntSlice 类型,并且实现了 sort.Interface 接口: type IntSlice []int func (p IntSlice) Len() int { return len(p) } func (p IntSlice) Less(i, j int) bool { return p[i] < p[j] } func (p IntSlice) Swap(i, j int) { p[i], p[j] = p[j], p[i] } //IntSlice 类型定义了 Sort() 方法,包装了 sort.Sort() 函数 func (p IntSlice) Sort() { Sort(p) } //IntSlice 类型定义了 SearchInts() 方法,包装了 SearchInts() 函数 func (p IntSlice) Search(x int) int { return SearchInts(p, x) } //并且提供的 sort.Ints() 方法使用了该 IntSlice 类型:所以直接使用该方法即可进行排序 func Ints(a []int) { Sort(IntSlice(a)) }
-
func Ints(a []int) { Sort(IntSlice(a)) }:默认升序排序
s := []int{5, 2, 6, 3, 1, 4} // 未排序的切片数据 sort.Ints(s) fmt.Println(s) // 将会输出[1 2 3 4 5 6] //使用Reverse方法进行降序 s := []int{5, 2, 6, 3, 1, 4} // 未排序的切片数据 sort.Sort(sort.Reverse(sort.IntSlice(s))) fmt.Println(s) // 将会输出[6 5 4 3 2 1]
-
func SearchInts(a []int, x int) int :查找切片中元素,需要提前进行升序排序
-
-
Float64Slice 类型及[]float64 排序与IntSlice类似
- go内部实现
type Float64Slice []float64 func (p Float64Slice) Len() int { return len(p) } func (p Float64Slice) Less(i, j int) bool { return p[i] < p[j] || isNaN(p[i]) && !isNaN(p[j]) } func (p Float64Slice) Swap(i, j int) { p[i], p[j] = p[j], p[i] } func (p Float64Slice) Sort() { Sort(p) } func (p Float64Slice) Search(x float64) int { return SearchFloat64s(p, x) } 与 Sort()、IsSorted()、Search() 相对应的三个方法: func Float64s(a []float64) func Float64sAreSorted(a []float64) bool func SearchFloat64s(a []float64, x float64) int
- go内部实现
-
StringSlice 类型及[]string 排序
- 内部实现
type StringSlice []string func (p StringSlice) Len() int { return len(p) } func (p StringSlice) Less(i, j int) bool { return p[i] < p[j] } func (p StringSlice) Swap(i, j int) { p[i], p[j] = p[j], p[i] } func (p StringSlice) Sort() { Sort(p) } func (p StringSlice) Search(x string) int { return SearchStrings(p, x) } 与 Sort()、IsSorted()、Search() 相对应的三个方法: func Strings(a []string) func StringsAreSorted(a []string) bool func SearchStrings(a []string, x string) int
- 内部实现
自定义结构体的简单化排序
-
sort.Slice():不稳定排序
people := []struct { Name string Age int }{ {"Gopher", 7}, {"Alice", 55}, {"Vera", 24}, {"Bob", 75}, } sort.Slice(people, func(i, j int) bool { return people[i].Age < people[j].Age }) // 按年龄升序排序 fmt.Println("Sort by age:", people)
-
sort.SliceStable():稳定排序,原集合中相同数据排序后仍然保持原集合的顺序
people := []struct { Name string Age int }{ {"Gopher", 7}, {"Alice", 55}, {"Vera", 24}, {"Bob", 75}, } sort.SliceStable(people, func(i, j int) bool { return people[i].Age > people[j].Age }) // 按年龄降序排序 fmt.Println("Sort by age:", people)
-
sort.SliceIsSorted():该函数根据自定义的规则判断集合是否为有序.
people := []struct { Name string Age int }{ {"Gopher", 7}, {"Alice", 55}, {"Vera", 24}, {"Bob", 75}, } sort.Slice(people, func(i, j int) bool { return people[i].Age > people[j].Age }) // 按年龄降序排序 fmt.Println("Sort by age:", people) fmt.Println("Sorted:",sort.SliceIsSorted(people,func(i, j int) bool { return people[i].Age < people[j].Age }))
-
sort.Search():该函数判断集合是否存在指定元素,举个栗子:
a := []int{2, 3, 4, 200, 100, 21, 234, 56} x := 21 sort.Slice(a, func(i, j int) bool { return a[i] < a[j] }) // 升序排序 index := sort.Search(len(a), func(i int) bool { return a[i] >= x }) // 查找元素 if index < len(a) && a[index] == x { fmt.Printf("found %d at index %d in %v\n", x, index, a) } else { fmt.Printf("%d not found in %v,index:%d\n", x, a, index) }
- 借鉴了标准库的翻译,标准库的翻译非常不错,我改了一些是为了让我以后在忘掉的情况下能更为快速的掌握这部分知识
连接如下:
!(http://books.studygolang.com/The-Golang-Standard-Library-by-Example/chapter03/03.1.html)