用顺序栈解决将读入的数按相反的方向解决

#ifndef _SQSTACK_H_ #define _SQSTACK_H_ #include <iostream> using namespace std; enum StatusCode{SUCCESS,RANGE_ERROR,OVER_FLOW,UNDER_FLOW}; const int DEFAULT_SIZE=10; template<class ElemType> class S
相关文章
相关标签/搜索