1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| class Solution { public: ListNode* mergeTwoLists(ListNode* n1, ListNode* n2) { ListNode dummy (0) ; ListNode* start= &dummy ;
while(n1 && n2) { if(n1->val <= n2->val) { start->next = n1; n1 = n1->next; } else { start->next = n2; n2 = n2->next; } start = start->next; } start->next = n1 ? n1 : n2 ; return dummy.next; } };
|