文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Go语言的sort包函数如何使用

2023-06-30 18:45

关注

本篇内容主要讲解“Go语言的sort包函数如何使用”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Go语言的sort包函数如何使用”吧!

sort包简介

官方文档Golang的sort包用来排序,二分查找等操作。

sort包内置函数

sort.Ints(x []int)
ints := []int{1, 4, 3, 2}fmt.Printf("%v\n", ints) sort.Ints(ints) //默认升序fmt.Printf("%v\n", ints) //[1 2 3 4] sort.Sort(sort.Reverse(sort.IntSlice(ints))) //降序排序 fmt.Printf("%v\n", ints) //[4 3 2 1]

sort.Strings(x []string)

sort.Float64s(x []float64)

sort.Slice(x any, less func(i, j int) bool)
slices := []int{1, 1, 4, 5, 1, 4}sort.Slice(slices, func(i, j int) bool {return slices[i] < slices[j]})fmt.Printf("%v\n", slices)//[1 1 1 4 4 5]
type stu struct {name stringage  int}stus := []stu{{"h", 20}, {"a", 23}, {"h", 21}}sort.Slice(stus, func(i, j int) bool {if stus[i].name == stus[j].name {return stus[i].age > stus[j].age // 年龄逆序}return stus[i].name < stus[j].name // 名字正序})fmt.Printf("%v\n", stus) //[{a 23} {h 21} {h 20}]
sort.Sort(data 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 stu struct {name stringage  int}type student []stufunc (s student) Len() int {return len(s)}func (s student) Less(i, j int) bool {if s[i].name == s[j].name {return s[i].age > s[j].age // 年龄逆序}return s[i].name < s[j].name // 名字正序}func (s student) Swap(i, j int) {s[i], s[j] = s[j], s[i]}func main() {stus1 := student{{"h", 20}, {"a", 23}, {"h", 21}}sort.Sort(stus1)fmt.Printf("%v\n", stus1) //[{a 23} {h 21} {h 20}] 使用效果等同于sort.Slice}
sort.SearchInts(a []int, x int) int
arr := []int{1, 2, 3, 4, 5, 6, 7}idx := sort.SearchInts(arr, 4)fmt.Printf("%v\n", idx) // 3

sort.SearchFloat64s(a []float64, x float64) int

sort.SearchStrings(a []string, x string) int

sort.Search(n int, f func(int) bool) int
arr := []int{1, 2, 3, 4, 5, 6, 7}idx := sort.Search(len(arr), func(i int) bool {return arr[i] > 4})fmt.Printf("%v\n", idx) //4
mysring := []string{"abcd", "bcde", "bfag", "cddd"}idx := sort.Search(len(mysring), func(i int) bool {// 查找头两位字母不是b的,,返回找到的第一个return mysring[i][0] != 'b' && mysring[i][1] != 'b'})fmt.Printf("%v\n", mysring[idx]) // cdddmysring := []string{"abcd", "bcde", "bfag", "cddd"}idx := sort.Search(len(mysring), func(i int) bool {//查找第一个字母不是b的return mysring[i][0] <= byte('b')})fmt.Printf("%v\n", mysring[idx]) // abcd

到此,相信大家对“Go语言的sort包函数如何使用”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯