Problem Description
Given the head of a singly linked list, sort the list using insertion sort, and return the sorted list's head.
Key Insights
- Insertion sort builds a sorted output list one element at a time by repeatedly removing elements from the input list and inserting them in the correct position.
- The algorithm maintains a reference to the sorted part of the list while iterating through the unsorted part.
- It is important to handle the linked list nodes effectively, as we cannot directly access elements by index.
Space and Time Complexity
Time Complexity: O(n^2) - In the worst case, each insertion takes linear time, leading to a quadratic time complexity overall. Space Complexity: O(1) - We sort the list in place, using only a constant amount of extra space.
Solution
The solution involves iterating through the linked list and inserting each node into its proper position in a new sorted list. We utilize a dummy node to simplify the insertion process. The approach involves:
- Creating a new sorted list initialized with a dummy head.
- Iterating through each node of the original list.
- For each node, finding the appropriate position in the sorted list and inserting it there.