<p>某双向链表中的结点如图所示,删除 t 所指结点的操作为<img src="https://file.gaojiufeng.cn/learnAppQuestion/ef/e9/efe90f32b2d70e672fd33640cf621a1c.png" alt="" data-cke-saved-src="https://file.gaojiufeng.cn/img/qiniu/2018-10-09/J5JW7e07XR3Wpb7hYxlwTE4plGRcwsQHpA53Xp4f.png" style="width: 100%;height: auto;">​</p>

题目类型: 单选题

题目内容

某双向链表中的结点如图所示,删除 t 所指结点的操作为

题目选项

A. t->prior->prior=t->next ; t->next->prior=t->prior ;
B. t->prior->prior=t->prior ; t->next->next=t->next ;
C. t->prior->next=t->prior ; t->next->prior=t->next ;
D. t->prior->next=t->next ; t->next->prior=t->prior ;

正确答案

D

题目解析

题目纠错