这里我就直接把go的代码给写出来
package main
import "log"
const MAX = 50
type SqList struct {
Data *[MAX]int
Length int
}
// 顺序
2020-12-03