请在 下方输入 要搜索的题目:

在双向链表中,在p所指向的结点前插入一个q所指向的结点,相应的操作语句是( )。注:双向链表的结点结构为(prior,data,next)。


A、p->prior=q;q->next=p;p->prior->next=q;q->prior=q;;
B、p->prior=q;p->prior->next=q;q->next=p;q->prior=p->prior;;
C、q->next=p;q->prior=p->prior;p->prior->next=q;p->prior=q;;
D、q->prior=p->prior;q->next=q;p->prior=q;p->prior=q;

发布时间:2024-09-12 21:01:07
推荐参考答案 ( 由 题搜搜 官方老师解答 )
答案:q->next=p;q->prior=p->prior;p->prior->next=q;p->prior=q;
登录 - 搜搜题库网
立即注册
注册 - 搜搜题库网
立即登录