带哨兵头尾节点的双向循环链表,在表头插入节点 p,以下四步操作无论什么顺序执行结果都正确。
① p->next= head->next;
② p->prev= head;
③ head->next->prev= p;
④ head->next= p;
正确
错误