# 0147. Insertion Sort List

<https://leetcode.com/problems/insertion-sort-list>

## Description

Given the `head` of a singly linked list, sort the list using **insertion sort**, and return *the sorted list's head*.

The steps of the **insertion sort** algorithm:

1. Insertion sort iterates, consuming one input element each repetition and growing a sorted output list.
2. At each iteration, insertion sort removes one element from the input data, finds the location it belongs within the sorted list and inserts it there.
3. It repeats until no input elements remain.

The following is a graphical example of the insertion sort algorithm. The partially sorted list (black) initially contains only the first element in the list. One element (red) is removed from the input data and inserted in-place into the sorted list with each iteration.

![](https://upload.wikimedia.org/wikipedia/commons/0/0f/Insertion-sort-example-300px.gif) **Example 1:**

![](https://assets.leetcode.com/uploads/2021/03/04/sort1linked-list.jpg)

```
**Input:** head = [4,2,1,3]
**Output:** [1,2,3,4]
```

**Example 2:**

![](https://assets.leetcode.com/uploads/2021/03/04/sort2linked-list.jpg)

```
**Input:** head = [-1,5,3,4,0]
**Output:** [-1,0,3,4,5]
```

**Constraints:**

* The number of nodes in the list is in the range `[1, 5000]`.
* `-5000 <= Node.val <= 5000`

## ac

know insertion sort

```java
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode insertionSortList(ListNode head) {
        // prev/head, walk, if head>prev continue, else stop.
        // extract head -> tmp
        // insert tmp in sorted part, t1/t2, if t2>head stop, insert.
        // loop, compare.

        // corner case
        if (head == null || head.next == null) return head;

        // walk
        ListNode dummy = new ListNode(0);
        dummy.next = head;
        ListNode prev = head;
        head = head.next;

        while (head != null) {
            if (head.val >= prev.val) {
                prev = head;
                head = head.next;
                continue;
            }
            // stop, extract
            ListNode tmp = head;
            head = head.next;
            prev.next = head;
            // find insertion point in sorted part
            ListNode t1 = dummy, t2 = t1.next;
            while (t2.val < tmp.val) {
                t1 = t2;
                t2 = t2.next;
            }
            // insert tmp
            tmp.next = t2;
            t1.next = tmp;
        }

        return dummy.next;
    }
}
```

```java
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode insertionSortList(ListNode head) {
        ListNode dummy = new ListNode(0);
        ListNode prev = dummy;

        while (head != null) {
            ListNode tmp = head.next; // for further usage
            if (head.val < prev.val) prev = dummy;  // reset to head, find insertion point
            while (prev.next != null && prev.next.val < head.val) 
                prev = prev.next;

            head.next = prev.next;
            prev.next = head;
            head = tmp;
        }

        return dummy.next;
    }
}
/*
dummy head as sorted list, when old list head < new list, find insertion point
*/
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://jaywin.gitbook.io/leetcode/solutions/0147-insertion-sort-list.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
