网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
在非空线性链表中由p所指的结点后面插入一个由q所指的结点的过程是依次执行语句:q->next=p->next;p->next=q。
参考答案
更多 “在非空线性链表中由p所指的结点后面插入一个由q所指的结点的过程是依次执行语句:q-next=p-next;p-next=q。” 相关考题
考题
在一个单链表head中,若要在指针p所指结点后插入一个q指针所指结点,则执行()
A.p-next=q-next;q-next=p;B.q-next=p-next;p=q;C.p-next=q-next;p-next=q;D.q-next=next;p-next=q;
考题
在一个单链表中,若要在指针q所指结点的后面插入一个由指针p所指向的结点,则执行下面哪条语句?( )A.q->next=p-next;p=qB.p->next=q->next;q=pC.q->next=p->next;p->next=qD.p->next=q->next;q->next=p
考题
在非空线性链表中由p所指的结点后面插入一个由q所指的结点的过程是依次执行()。A、q-link=p; p-link=q;B、q-link=p-link; p=q;C、q-link=p-link; p-link=q;D、p-link=q; q-link=p;
考题
在非空双向循环链表中由q所指的结点后面插入一个由p指的结点的动作依次为:llink(p)←q,rlink(p)←rlink(q),rlink(q)←p,llink(rlink(q))←p。
考题
在一个单链表head中,若要在指针p所指结点后插入一个q指针所指结点,则执行()A、p-next=q-next;q-next=p;B、q-next=p-next;p=q;C、p-next=q-next;p-next=q;D、q-next=next;p-next=q;
考题
已知指针p和q分别指向某单链表中第一个结点和最后一个结点。假设指针s指向另一个单链表中某个结点,则在s所指结点之后插入上述链表应执行的语句为()。A、q-next=s-next;s-next=p;B、s-next=p;q-next=s-next;C、p-next=s-next;s-next=q;D、s-next=q;p-next=s-next;
考题
在一个单链表中,已知q所指结点是p所指结点的前驱结点,若在q和p之间插入一个结点s,则执行()。A、s-next=p-next;p-next=s;B、p-next=s-next;s-next=p;C、q-next=s;s-next=p;D、p-next=s;s-next=q;
考题
在一个单链表HL中,若要删除由指针q所指向结点的后继结点,则执行()A、p=q-next;p-next=q-next;B、p=q-next;q-next=p;C、p=q-next;q-next=p-next;D、q-next=q-next-next;q-next=q;
考题
在双向循环链表中,在p指针所指的结点后插入一个指针q所指向的新结点,修改指针的操作是()。A、p-next=q;q-prior=p;p-next-prior=q;q-next=q;B、p-next=q;p-next-prior=q;q-prior=p;q-next=p-next;C、q-prior=p;q-next=p-next;p-next-prior=q;p-next=q;D、q-next=p-next;q-prior=p;p-next=q;p-next=q;
考题
在一个单链表中,已知q所指结点是p所指结点的直接前驱,若在q和p之间插入s所指结点,则执行()操作。A、s-next=p-next;p-next=s;B、q-next=s;s-next=p;C、p-next=s-next;s-next=p;D、p-next=s;s-next=q;
考题
在双向循环链表中,在p指针所指的结点后插入q所指向的新结点,其修改指针的操作是()。A、p-next=q; q-prior=p; p-next-prior=q; q-next=q; B、p-next=q; p-next-prior=q; q-prior=p; q-next=p-next; C、q-prior=p; q-next=p-next; p-next-prior=q; p-next=q; D、q-prior=p; q-next=p-next; p-next=q; p-next-prior=q;
考题
在一个单链表HL中,若要在指针q所指的结点的后面插入一个由指针p所指的结点,则执行()A、q-next=p-next;p-next=q;B、p-next=q-next;q=p;C、p-next=q-next;q-next=p;
考题
在一个单链表中,p、q分别指向表中两个相邻的结点,且q所指结点是p所指结点的直接后继,现要删除q所指结点,可用语句()。A、p-next=q-nextB、p=q-nextC、q-next=NULLD、p-next=q
考题
单选题在一个单链表head中,若要在指针p所指结点后插入一个q指针所指结点,则执行()A
p-next=q-next;q-next=p;B
q-next=p-next;p=q;C
p-next=q-next;p-next=q;D
q-next=next;p-next=q;
考题
单选题在一个单链表HL中,若要在指针q所指的结点的后面插入一个由指针p所指的结点,则执行()A
q-next=p-next;p-next=q;B
p-next=q-next;q=p;C
p-next=q-next;q-next=p;
考题
判断题非空双向循环链表中由q所指的结点后面插入一个由p指的结点的动作依次为:p-prior=q,p-next=q-next,q-next=p,q-prior-next←p。A
对B
错
考题
单选题在一个单链表HL中,若要删除由指针q所指向结点的后继结点,则执行()A
p=q-next;p-next=q-next;B
p=q-next;q-next=p;C
p=q-next;q-next=p-next;D
q-next=q-next-next;q-next=q;
考题
单选题在非空线性链表中由p所指的结点后面插入一个由q所指的结点的过程是依次执行()。A
q-link=p; p-link=q;B
q-link=p-link; p=q;C
q-link=p-link; p-link=q;D
p-link=q; q-link=p;
考题
单选题在双向循环链表中,在p指针所指的结点后插入q所指向的新结点,其修改指针的操作是()。A
p-next=q; q-prior=p; p-next-prior=q; q-next=q; B
p-next=q; p-next-prior=q; q-prior=p; q-next=p-next; C
q-prior=p; q-next=p-next; p-next-prior=q; p-next=q; D
q-prior=p; q-next=p-next; p-next=q; p-next-prior=q;
考题
单选题在双向循环链表中,在p指针所指的结点后插入一个指针q所指向的新结点,修改指针的操作是()。A
p-next=q;q-prior=p;p-next-prior=q;q-next=q;B
p-next=q;p-next-prior=q;q-prior=p;q-next=p-next;C
q-prior=p;q-next=p-next;p-next-prior=q;p-next=q;D
q-next=p-next;q-prior=p;p-next=q;p-next=q;
热门标签
最新试卷