while(!pStack->Empty())pStack->pop(elem)cout<<num[elem]为什么要用while循环啊,可不可以使用for循环,从顶到底进行循环求大神指点一下?
谢谢??
while循环简单易懂,for也可以
for(int i = pStack.stackLength-1;i>=0;i--)
{
pStack->pop(elem) cout<<num[elem]
}