解决方法 /* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* Merge(ListNode* pHead1, ListNode* pHead2) { // 初始化:cur指向新链表的头结点, p1, p2分别指向链表l1, l2的头 // 1.两个...