golang按第一个元素对切片进行切片

时间:2019-03-26 14:51:30

标签: go slice

我正在尝试对切片儿童(切片内)进行排序,切片是根据

创建的
var s [][]int64
s = append(s, []int64{2, 60, 55, 5})
s = append(s, []int64{4, 45, 35, 10})
s = append(s, []int64{1, 200, 160, 40})
fmt.Println(s) # [[2 60 55 5] [4 45 35 10] [1 200 160 40]]

如何按第一个元素将其值排序为:

[[1 200 160 40] [2 60 55 5] [4 45 35 10]]

1 个答案:

答案 0 :(得分:0)

该问题并未说明应该使用空片来做什么,因此将它们像常规单词排序中的空词一样对待,会将它们放在首位,这样就可以处理这种边缘情况:

import "sort"

sort.Slice(s, func(i, j int) bool {
    // edge cases
    if len(s[i]) == 0 && len(s[j]) == 0 {
        return false // two empty slices - so one is not less than other i.e. false
    }
    if len(s[i]) == 0 || len(s[j]) == 0 {
        return len(s[i]) == 0 // empty slice listed "first" (change to != 0 to put them last)
    }

    // both slices len() > 0, so can test this now:
    return s[i][0] < s[j][0]
})

游乐场version