已知带头结点的链栈top,则该链栈为空的条件是()
A: top->next==NULL
B: top==NULL
C: top->next->next==NULL
D: top->next==top
A: top->next==NULL
B: top==NULL
C: top->next->next==NULL
D: top->next==top
A
举一反三
- 已知带头结点的链栈top, 则该链栈为空的条件是( ) A: top==NULL B: top->next= =NULL C: top->next->next= =NULL D: top->next= =top
- 已知带头结点的链栈top, 则该链栈为空的条件是( ) A: top==NULL B: top->next= =NULL C: top->next->next= =NULL D: top->next= =top
- 已知带头结点的链栈top, 则该链栈不空时, 出栈操作的语句是( ) A: top->;next=top->;next->;next; *x=top->;next->;data; B: *x=top->;next->;data; top->;next=top->;next->;next; free(top->;next); C: *x=top ->;data;p=top;top =p->;next;free(p); D: *x=top->;next->;data;p=top->;next;top->;next=p->;next;free(p);
- 已知带头结点的链栈top,则元素x对应的新结点s进栈操作的语句是() A: top->next=s;s->next=top->next; B: s->next=top->next;top->next=s; C: s->next=top;top=s; D: top=s;s->next=top;
- 已知带头结点的链栈top, 则元素x对应的新结点s进栈操作的语句是() A: s->next=top->next;top->next=s; B: top->next=s; s->next=top->next; C: s->next=top;top =s; D: top =s; s->next=top;
内容
- 0
已知带头结点的链栈top, 则该链栈为空的条件是( ) A: top==NULL B: top->next= =NULL C: top->next->next= =NULL D: top->next= =top
- 1
某链栈的栈顶指针为top,若向该栈中插入一个p所指结点,则执行______。 A: p->;next=top; top=top->;next; B: top->;next=p; C: p->;next=top->;next; top->;next=p; D: p->;next=top; top=p;
- 2
向一个栈顶指针为top的链栈中插入一个x结点,则执行()。 A: top->next=x B: x->next=top->next,top->next=x C: x->next=top,top=x D: x->next=top,top=top->next
- 3
假定一个链栈的栈顶指针用top表示,退栈时所进行的指针操作为()。 A: top->;next=top B: top=top->;data C: top=top->;next D: top->;next=top->;next->;next
- 4
若不带头结点的链栈其栈顶指针为top,则删除栈顶元素,应进行如下()操作。 A: top=top->next; s=top;free(s); B: s=top; top=top->next; free(s); C: s=top->next; top->next=s->next;free(s); D: s=top; top->next=s->next;free(s);