向一个栈顶指针为h的链栈中插入一个s所指结点时,可执行s->next=h; 和 操作。(结点的指针域为next)
向一个栈顶指针为h的链栈中插入一个s所指结点时,可执行s->next=h; 和 操作。(结点的指针域为next)
相关考题:
向一个栈顶指针为h的带头结点的链栈中插入指针s所指的结点时,应执行()操作。A.h->next=s;B.s->next=h;C.s->next=h;h->next=s;D.s->next=h->next;h->next=s;
向一个栈顶指针为hs的链栈中插入一个s结点时,应执行()。 A、hs->next=s;B、s->next=hs;hs=s;C、s->next=hs->next;hs->next=s;D、s->next=hs;hs=hs->next;
向一个栈顶指针为h的链栈(不带头结点)插入一个新的结点(由s指向),则正确的操作是()。A.h->next=s;B.s->next=h->next; h->next=s;C.s->next=h; h=s;D.s->next=h; h=h->next;
向一个栈顶指针为h的链栈(不带头结点)插入一个新的结点(由s指向),则正确的操作是()A.h->next=s;B.s->next=h; h=s;C.s->next=h->next; h->next=s;D.s->next=h; h=h->next;