数据结构实验二

1.顺序栈 #include<iostream.h> const int StackSize=10; template<class DataType> class SeqStack { public: SeqStack(); ~SeqStack(){} void Push(DataType x); DataType Pop(); DataType GetTop(); int Empty(); pr
相关文章
相关标签/搜索