單鏈表的建立、賦值 C++示例

#include <iostream> using namespace std; struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } }; ListNode* CloneList(ListNode* pHead){
相關文章
相關標籤/搜索