class Stack { public: ElemType Top() const { int StackSize_ = data_.size(); return data_[StackSize_ -1]; } void Push(const ElemType &elem) {
確定! 回上一頁