摘要: package main import ( "fmt" "errors" "strconv" ) //用栈计算算数算数表达式的结果 type Stack struct { MaxSize int Top int Array [20]int } //入栈 func (this *Stack) Push(val int) error { if this.IsFull() { ... 阅读全文
posted @ 2018-12-10 16:59 kosa 阅读(674) 评论(0) 推荐(0) 编辑