第31859题 单选题
在非空双向链表中,若指针p指向某非尾结点,要在p的后方插入新结点q,以下操作序列正确的是?

双向链表结点结构定义如下:

typedef struct DNode {
    int data;
    struct DNode *prior; // 指向直接前驱结点
    struct DNode *next;  // 指向直接后继结点
} DNode;
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析