本程序通过C++实现数据结构中顺序栈,主要功能有压栈、弹栈、遍历、栈空间拓展等,具体功能函数如下: MStack(inttCapacity,bool&flag); ~MStack(); voidClear(); boolEmpty()const; boolPush(ElemType&); boolPop(ElemType&); boolGetTopElem(ElemType&)const; booltraverse(void(*visit)(constElemType&))const; intGetCapacity()const; templat