题目:双向链表中有两个指针域,prior和next,分别指向前驱及后继,设p指向链表中的一个结点,q指向一待插入结点,现要求在p前插入q,则正确的插入为( )
- A. p->prior=q; q->next=p; p->prior->next=q; q->prior=p->prior;
- B. p->prior->next=q; q->next=p; q->prior=p->prior; p->prior=q;
- C. q->next=p; p->next=q; p->prior->next=q; q->next=p;
- D. q->prior=p->prior; p->prior->next=q; q->next=p; p->prior=q->next;
答案:
<查看本题扣1积分>
查看答案
问题答案不对?抱歉,搜索引擎优化导致页面变化,请尝试站内搜索,远程教育试题库