/* 设计一个堆栈的类模板Stack,在模板中用类型参数T表示栈中存放的数据,用非类型参数MAXSIZE代表栈的大小。 */ #include using namespace std; template class Stack{ private: T elem[MAXSIZE]; int top; public: Stack(){top=0;}; void push(T e); T pop(); bool empty(){ if (top<=-1) return 1; else return 0; } void setEmpty(){ top=-1; } bool full(){ if (top>=MAXSIZE-1) { return 1; } else return 0; } }; /* 原型: template <模板参数列表> 返回值类型 类模板名<模板参数名表>::成员函数名 (参数列表){}; */ template void Stack::push(T e){ if(full()){ cout<<"栈已满,不能再添加元素了!"; return; } elem[++top]=e; } template T Stack::pop(){ if(empty()){ cout<<"栈已空,不能再弹出元素了!"< iStack; Stack cStack; iStack.setEmpty(); cStack.setEmpty(); cout<<"-------intStack----\n"; int i; for(i=1;i<11;i++) iStack.push(i); for(i=1;i<11;i++) cout<