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;不能理解,誰能詳細點解釋下
添加回答
舉報
0/150
提交
取消