双指针 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->ne...