题目内容

判定一个循环队列(最多元素为m, m= =Maxsize-1)为满队列的条件是( )。

A. ((rear- front)+ Maxsize)% Maxsize ==m
B. rear-front-1==m
C. front==rear
D. front==rear+1

查看答案
更多问题

在链栈中进行出栈操作时()。

A. 必须判别栈是否满
B. 判别栈元素的类型
C. 必须判别栈是否空
D. 不做任何判别

向一个栈顶指针为top中插入一个s所指结点时,其操作步骤为()。

A. top->next=s
B. s->next=top->next;top->next=s;
C. s->next=top;top=s;
D. s->next=top->next;top=top->next;

在一个链队列中,若f,r分别为对头、队尾指针,则插入s所指结点的操作为()。

A. f->next=s; f=s;
B. r->next=s; r=s;
C. s->next=r; r=s;
D. s->next=f; f=s;

在顺序栈栈满的情况下,不能再入栈,否则会产生“上溢”。

A. 对
B. 错

答案查题题库