求助单链表的内容

bool List:: ListInsertHead(Node *pNode)
{
    Node *temp=pList->next;
    Node *newNode=new Node;
    if(newNode==NULL)
        return false;
    newNode->data=pNode->data;
    pList->next=newNode;
    newNode->next=temp;
}

pList->next=newNode;

newNode->next=temp;

不能理解,谁能详细点解释下

回忆_1
浏览 1357回答 2
2回答

回忆_1

我已经懂了,没事了,打扰了
打开App,查看更多内容
随时随地看视频慕课网APP