數據結構筆記(4)

棧與隊列 一:棧 1.順序棧的實現 template class SeqStack { public: SeqStack(){top=-1;} ~SeqStack(){} void Push(DataType x); DataType Pop(); DataType GetTop(){if(top!=-1)return data[top];} int Empty(){if (top==-1)ret
相關文章
相關標籤/搜索