摘要:
栈 //用数组实现一个顺序栈 type Stack struct{ arr []int used int capcity int } func NewStack(capicity int) *Stack{ stack := &Stack{} stack.arr = make([]int,capici 阅读全文
posted @ 2020-06-17 23:59
defmain
阅读(176)
评论(0)
推荐(0)