有以下测试程序,补充完整模板栈定义及测试函数testTStak, 让程序能正常运行
int main(){
int n,choice;
int temp;
TStack
TStack
TStack
while(cin>>n){
cin>>choice;
switch (choice)
{
case 1:testTStack(intStack, n);break;
case 2:testTStack(doubleStack, n);break;
case 3:testTStack(charStack, n);break;
}
}
return 0;
}
模板栈定义如下:
template
class TStack{
private:
T elems[100];
int numElems;
public:
TStack();
bool push(T const&);
bool pop(T &);
bool isEmpty(); // 判断栈是否为空
bool clear(); //清空栈
};