摘要: package mainimport ( "fmt" "math/rand" "sort")func main() { s := make([]int, 0, 128) for i := 0; i < 128; i++ { s = append(s, rand.Intn(1000)) } fmt.P 阅读全文
posted @ 2020-09-06 12:54 lgf133 阅读(143) 评论(0) 推荐(0) 编辑