顺序栈s中top为栈顶指针,指向栈顶元素所在的位置,elem
顺序栈s中top为栈顶指针,指向栈顶元素所在的位置,elem为存放栈的数组,则元素e进栈操作的主要语句为()
A.s.elem[top]=e;
s.top=s.top+1;
B.s.elem[top+1]=e;
s.top=s.top+1;
C.s.top=s.top+1;
s.elem[top+1]=e;
D.s.top=s.top+1;
s.elem[top]=e;
A.s.elem[top]=e;
s.top=s.top+1;
B.s.elem[top+1]=e;
s.top=s.top+1;
C.s.top=s.top+1;
s.elem[top+1]=e;
D.s.top=s.top+1;
s.elem[top]=e;
查看答案解析
【正确答案】
D【答案解析】
你可能喜欢