题解列表

筛选

堆栈的使用-题解(C++代码)

摘要:**注意每输完一组数据后要换行** 1、stack.empty()若栈为空时,返回true 2、stack.top()取栈顶元素 3、stack.push()往栈顶添加元素 4、stack.p……