go给int64数组中的元素排序
时间: 2023-12-30 10:06:57 浏览: 143
Golang算法问题之数组按指定规则排序的方法分析
可以使用sort包中的Int64s函数来对int64数组进行排序。
示例代码:
```
import "sort"
func main() {
arr := []int64{5, 2, 7, 1, 9, 3}
sort.Int64s(arr)
fmt.Println(arr)
}
```
输出结果:
```
[1 2 3 5 7 9]
```
阅读全文