这期内容当中小编将会给大家带来有关golang中怎么实现slice排序,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

1、升序排序

 sort.Ints() sort.Float64s()  sort.Strings() 
package main

import (
 "fmt"
 "sort"
)

func main() {
 intList := [] int {2, 4, 3, 5, 7, 6, 9, 8, 1, 0}
 float8List := [] float64 {4.2, 5.9, 12.3, 10.0, 50.4, 99.9, 31.4, 27.81828, 3.14}
 stringList := [] string {"a", "c", "b", "d", "f", "i", "z", "x", "w", "y"}

 sort.Ints(intList)
 sort.Float64s(float8List)
 sort.Strings(stringList)

 fmt.Printf("%v\n%v\n%v\n", intList, float8List, stringList)

}

2、降序排序

sort.Sort(obj)  Len()  Swap(i,j) 
sort.Reverse(slice) slice.Interface.Less 
package main

import (
 "fmt"
 "sort"
)

func main() {
 intList := [] int {2, 4, 3, 5, 7, 6, 9, 8, 1, 0}
 float8List := [] float64 {4.2, 5.9, 12.3, 10.0, 50.4, 99.9, 31.4, 27.81828, 3.14}
 stringList := [] string {"a", "c", "b", "d", "f", "i", "z", "x", "w", "y"}

 sort.Sort(sort.Reverse(sort.IntSlice(intList)))
 sort.Sort(sort.Reverse(sort.Float64Slice(float8List)))
 sort.Sort(sort.Reverse(sort.StringSlice(stringList)))

 fmt.Printf("%v\n%v\n%v\n", intList, float8List, stringList)
}

3、深入理解排序

Len()Less(i,j) Swap(i,j) sort.Inferface Sort()  sort.Interface sort.Reverse  Interface.Less 
sort.Reverse 
package main

import (
 "fmt"
 "sort"
)

// 自定义的 Reverse 类型
type Reverse struct {
 sort.Interface // 这样,Reverse可以接纳任何实现了sort.Interface的对象
}

// Reverse 只是将其中的 Inferface.Less 的顺序对调了一下
func (r Reverse) Less(i, j int) bool {
 return r.Interface.Less(j, i)
}

func main() {
 ints := []int{5, 2, 6, 3, 1, 4}

 sort.Ints(ints)          // 特殊排序函数,升序
 fmt.Println("after sort by Ints:\t", ints)

 doubles := []float64{2.3, 3.2, 6.7, 10.9, 5.4, 1.8}

 sort.Float64s(doubles)
 fmt.Println("after sort by Float64s:\t", doubles) // [1.8 2.3 3.2 5.4 6.7 10.9]

 strings := []string{"hello", "good", "students", "morning", "people", "world"}
 sort.Strings(strings)
 fmt.Println("after sort by Strings:\t", strings) // [good hello mornig people students world]

 ipos := sort.SearchInts(ints, -1) // int 搜索
 fmt.Printf("pos of 5 is %d th\n", ipos)

 dpos := sort.SearchFloat64s(doubles, 20.1) // float64 搜索
 fmt.Printf("pos of 5.0 is %d th\n", dpos)

 fmt.Printf("doubles is asc ? %v\n", sort.Float64sAreSorted(doubles))

 doubles = []float64{3.5, 4.2, 8.9, 100.98, 20.14, 79.32}
 // sort.Sort(sort.Float64Slice(doubles)) // float64 排序方法 2
 // fmt.Println("after sort by Sort:\t", doubles) // [3.5 4.2 8.9 20.14 79.32 100.98]
 (sort.Float64Slice(doubles)).Sort()   // float64 排序方法 3
 fmt.Println("after sort by Sort:\t", doubles)  // [3.5 4.2 8.9 20.14 79.32 100.98]

 sort.Sort(Reverse{sort.Float64Slice(doubles)}) // float64 逆序排序
 fmt.Println("after sort by Reversed Sort:\t", doubles)  // [100.98 79.32 20.14 8.9 4.2 3.5]
}
sort.Ints sort.Float64s sort.Strings 
Less()

上面的 Reverse 是个通用的结构体。

上面说了那么多, 只是对基本类型进行排序, 该到说说 struct 结构体类型的排序的时候了, 实际中这个用得到的会更多。

结构体类型的排序

sort.Sort(slice) sort.Interface 

1、模拟 IntSlice 排序

package main

import (
 "fmt"
 "sort"
)

type Person struct {
 Name string
 Age int
}

// 按照 Person.Age 从大到小排序
type PersonSlice [] Person

func (a PersonSlice) Len() int {   // 重写 Len() 方法
 return len(a)
}
func (a PersonSlice) Swap(i, j int){  // 重写 Swap() 方法
 a[i], a[j] = a[j], a[i]
}
func (a PersonSlice) Less(i, j int) bool { // 重写 Less() 方法, 从大到小排序
 return a[j].Age < a[i].Age
}

func main() {
 people := [] Person{
  {"zhang san", 12},
  {"li si", 30},
  {"wang wu", 52},
  {"zhao liu", 26},
 }

 fmt.Println(people)

 sort.Sort(PersonSlice(people)) // 按照 Age 的逆序排序
 fmt.Println(people)

 sort.Sort(sort.Reverse(PersonSlice(people))) // 按照 Age 的升序排序
 fmt.Println(people)

}

这完全是一种模拟的方式,所以如果懂了 IntSlice 自然就理解这里了,反过来,理解了这里那么 IntSlice 那里也就懂了。

这种方法的缺点是:根据 Age 排序需要重新定义 PersonSlice 方法,绑定 Len 、 Less 和 Swap 方法, 如果需要根据 Name 排序, 又需要重新写三个函数; 如果结构体有 4 个字段,有四种类型的排序,那么就要写 3 × 4 = 12 个方法, 即使有一些完全是多余的, O__O”… 仔细思量一下,根据不同的标准 Age 或是 Name, 真正不同的体现在 Less 方法上,所以可以将 Less 抽象出来, 每种排序的 Less 让其变成动态的,比如下面一种方法。

2、封装成 Wrapper

package main

import (
 "fmt"
 "sort"
)

type Person struct {
 Name string
 Age int
}

type PersonWrapper struct {     //注意此处
 people [] Person
 by func(p, q * Person) bool
}

func (pw PersonWrapper) Len() int {   // 重写 Len() 方法
 return len(pw.people)
}
func (pw PersonWrapper) Swap(i, j int){  // 重写 Swap() 方法
 pw.people[i], pw.people[j] = pw.people[j], pw.people[i]
}
func (pw PersonWrapper) Less(i, j int) bool { // 重写 Less() 方法
 return pw.by(&pw.people[i], &pw.people[j])
}

func main() {
 people := [] Person{
  {"zhang san", 12},
  {"li si", 30},
  {"wang wu", 52},
  {"zhao liu", 26},
 }

 fmt.Println(people)

 sort.Sort(PersonWrapper{people, func (p, q *Person) bool {
  return q.Age < p.Age // Age 递减排序
 }})

 fmt.Println(people)
 sort.Sort(PersonWrapper{people, func (p, q *Person) bool {
  return p.Name < q.Name // Name 递增排序
 }})

 fmt.Println(people)

}
sort.Sort(pw) 

3、进一步封装

感觉方法 2 已经很不错了, 唯一一个缺点是,在 main 中使用的时候暴露了 sort.Sort 的使用,还有就是 PersonWrapper 的构造。 为了让 main 中使用起来更为方便, me 们可以再简单的封装一下, 构造一个 SortPerson 方法, 如下:

package main

import (
 "fmt"
 "sort"
)

type Person struct {
 Name string
 Age int
}

type PersonWrapper struct {
 people [] Person
 by func(p, q * Person) bool
}

type SortBy func(p, q *Person) bool

func (pw PersonWrapper) Len() int {   // 重写 Len() 方法
 return len(pw.people)
}
func (pw PersonWrapper) Swap(i, j int){  // 重写 Swap() 方法
 pw.people[i], pw.people[j] = pw.people[j], pw.people[i]
}
func (pw PersonWrapper) Less(i, j int) bool { // 重写 Less() 方法
 return pw.by(&pw.people[i], &pw.people[j])
}

// 封装成 SortPerson 方法
func SortPerson(people [] Person, by SortBy){
 sort.Sort(PersonWrapper{people, by})
}

func main() {
 people := [] Person{
  {"zhang san", 12},
  {"li si", 30},
  {"wang wu", 52},
  {"zhao liu", 26},
 }

 fmt.Println(people)

 sort.Sort(PersonWrapper{people, func (p, q *Person) bool {
  return q.Age < p.Age // Age 递减排序
 }})

 fmt.Println(people)

 SortPerson(people, func (p, q *Person) bool {
  return p.Name < q.Name // Name 递增排序
 })

 fmt.Println(people)

}

在方法 2 的基础上构造了 SortPerson 函数,使用的时候传过去一个 [] Person 和一个 cmp 函数。

4、另一种思路

package main

import (
 "fmt"
 "sort"
)

type Person struct {
 Name  string
 Weight  int
}

type PersonSlice []Person

func (s PersonSlice) Len() int { return len(s) }
func (s PersonSlice) Swap(i, j int)  { s[i], s[j] = s[j], s[i] }

type ByName struct{ PersonSlice } // 将 PersonSlice 包装起来到 ByName 中

func (s ByName) Less(i, j int) bool  { return s.PersonSlice[i].Name < s.PersonSlice[j].Name } // 将 Less 绑定到 ByName 上


type ByWeight struct{ PersonSlice } // 将 PersonSlice 包装起来到 ByWeight 中
func (s ByWeight) Less(i, j int) bool { return s.PersonSlice[i].Weight < s.PersonSlice[j].Weight } // 将 Less 绑定到 ByWeight 上

func main() {
 s := []Person{
  {"apple", 12},
  {"pear", 20},
  {"banana", 50},
  {"orange", 87},
  {"hello", 34},
  {"world", 43},
 }

 sort.Sort(ByWeight{s})
 fmt.Println("People by weight:")
 printPeople(s)

 sort.Sort(ByName{s})
 fmt.Println("\nPeople by name:")
 printPeople(s)

}

func printPeople(s []Person) {
 for _, o := range s {
  fmt.Printf("%-8s (%v)\n", o.Name, o.Weight)
 }
}

上述就是小编为大家分享的golang中怎么实现slice排序了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注风纳云行业资讯频道。

另外有需要云服务器可以了解下风纳云fengnayun.com,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。