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