设栈ST 用顺序存储结构表示,则栈ST 为空的条件是
A: ST.top-ST.base<>0
B: ST.top-ST.base==0
C: ST.top-ST.base<>n
D: ST.top-ST.base==n
A: ST.top-ST.base<>0
B: ST.top-ST.base==0
C: ST.top-ST.base<>n
D: ST.top-ST.base==n
举一反三
- 设栈ST 用顺序存储结构表示,则栈ST 为空的条件是 A: ST.top-ST.base<>0 B: ST.top-ST.base==0 C: ST.top-ST.base<>n D: ST.top-ST.base==n
- 设栈ST 用顺序存储结构表示,则栈ST 为空的条件是 A: ST.top-ST.base<>0 B: ST.top-ST.base==0 C: ST.top-ST.base<>n D: ST.top-ST.base==n
- 假设顺序栈的定义为:typedefstruct{selemtype*base;/*栈底指针*/selemtype*top;/*栈顶指针*/intstacksize;/*当前已分配的存储空间,以元素为单位*/}sqstack;变量st为sqstack型,则栈st为空的判断条件为()。 A: st.base==NULL B: st.top==st.stacksize C: st.top-st.base>=st.stacksize D: st.top==st.base
- 判定一个顺序栈st(元素的个数最多为MaxSize)为空的条件可以设置为: A: st一>top==MaxSize/2 B: st一>top!=MaxSize/2 C: st一>top!=MaxSize-1 D: st->top==MaxSize-1
- 设栈ST用顺序存储结构表示,则栈ST为空的条件是____________________。