數據結構實驗二

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
相關文章
相關標籤/搜索