golang 二维切片
生活随笔
收集整理的這篇文章主要介紹了
golang 二维切片
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
初始化:
res := make([][length]int, length),
例如:
res := make([][2]int, 10)
fmt.Println(res)
輸出:
[[0 0] [0 0] [0 0] [0 0] [0 0] [0 0] [0 0] [0 0] [0 0] [0 0]]或者
a := [][]float64{{1, 2, 3, 4},{12, 21, 3, 14},{1, 1, 2, 3},{2, 3, 1, 6},{2, 2, 3, 3},{1, 1, 1, 1}}
排序:
//根據二維切片的第一個屬性從大到小排序,第二個屬性默認是遞增順序
people := [][]int{{9, 0}, {7, 0}, {1, 9}, {3, 0}, {2, 7}, {5, 3}, {6, 0}, {3, 4}, {6, 2}, {5, 2}}
less := func(i, j int) bool {if people[i][0] == people[j][0] {return people[i][1] < people[j][1]}return people[i][0] > people[j][0]
}
//調用排序函數
sort.Slice(people, less)
fmt.Println(people)
//輸出
//[[9 0] [7 0] [6 0] [6 2] [5 2] [5 3] [3 0] [3 4] [2 7] [1 9]]
轉載于:https://www.cnblogs.com/nyist-xsk/p/11365412.html
總結
以上是生活随笔為你收集整理的golang 二维切片的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【转】tf中的padding方式SAME
- 下一篇: Go排序