双指针 c++ python class Solution { public: ListNode* Merge(ListNode* pHead1, ListNode* pHead2) { ListNode* dummy = new ListNode(-1); ListNode* cur = dummy; while(pHead1 && pHead2){ if (pHead1->val <= pHead2->val){ cur->next = pHead1; pHead1 = pHead1->next; } else{ cur->n...