Problem Description
You are given the heads of two sorted linked lists list1
and list2
. Merge the two lists into one sorted list. The list should be made by splicing together the nodes of the first two lists. Return the head of the merged linked list.
Key Insights
- The two input lists are already sorted, which simplifies the merging process.
- A new linked list can be created by comparing the nodes of both lists and adding the smaller node to the new list.
- This problem can be solved iteratively or recursively.
Space and Time Complexity
Time Complexity: O(n + m), where n and m are the lengths of the two lists.
Space Complexity: O(1), if we are merging in-place, or O(n + m) if creating a new list.
Solution
To merge the two sorted linked lists, we can use a two-pointer approach. We initialize a dummy node to help in building the merged list. We traverse through both lists, comparing the current nodes, and link the smaller node to the merged list. We continue this process until we reach the end of one of the lists. Finally, we link the remaining nodes of the non-empty list to the merged list.