若一个栈以一维数组V[1..n]存储,初始栈顶指针top设为n+1,则元素x进栈的正确操作是( )。
A、top--; V[top]=x;;
B、top++; V[top]=x;;
C、V[top]=x; top++;;
D、V[top]=x; top--;
发布时间:2024-06-07 11:56:15
A、top--; V[top]=x;;
B、top++; V[top]=x;;
C、V[top]=x; top++;;
D、V[top]=x; top--;