Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.
Example:
Input:1->2->4, 1->3->4
Output:1->1->2->3->4->4node
創建一個新的鏈表,用來保存合併的結果。爲了方便鏈表的插入,定義一個臨時節點,不然每次都要遍歷到節點的尾部進行插入。python
ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) { if(l1 == nullptr) return l2; if(l2 == nullptr) return l1; ListNode* result = new ListNode(0) ; ListNode* temp = result; while(l1 != nullptr && l2 != nullptr){ if(l1->val <= l2->val){ temp ->next = l1; l1 = l1 -> next; } else{ temp -> next =l2; l2 = l2 ->next; } temp = temp ->next; } if(l1 == nullptr) temp -> next = l2; else temp -> next =l1; return result -> next; }
ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) { if(l1 == nullptr) return l2; if(l2 == nullptr) return l1; if(l1->val <= l2->val){ l1->next = mergeTwoLists(l1->next ,l2); return l1; } else{ l2->next = mergeTwoLists(l2->next ,l1); return l2; } }