问题详情

在非空双向循环链表结点中,prior域指向该结点的直接前驱,next域指向直接后续,那么在q所指的结点后面插入p所指的结点的过程为______。


A、q→next=p;p→prior=q;q→next→prior=p;p→next=q→next。

B、p→next=q→next;q→next=p;q→next→prior=p;p→prior=q。

C、p→prior=q;p→next=q→next;q→next=p;q→next→prior=p。

D、p→next=q→next;q→next→prior=p;p→prior=q;→next=p。

时间:2022-01-12 23:36 关键词:

答案解析

D