數據結構第五次作業第三章

特殊線性表——棧 const int StackSize=100; template class SeqStack { public: SeqStack(){top=-1;}; ~SeqStack(); void Push(T x); T Pop(); T GetTop(){if(top!=-1)return data[top];} bool Empty(){ if(top==-1)return
相關文章
相關標籤/搜索