Medium
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:
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.
Example 1:
Input: head = [4,2,1,3]
Output: [1,2,3,4]
Example 2:
Input: head = [-1,5,3,4,0]
Output: [-1,0,3,4,5]
Constraints:
[1, 5000]
.-5000 <= Node.val <= 5000
import com_github_leetcode.ListNode;
import java.util.Arrays;
/*
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
public class Solution {
public ListNode insertionSortList(ListNode head) {
ListNode tnode = head;
ListNode res = null;
int count = 0;
while (tnode != null) {
count++;
tnode = tnode.next;
}
int[] nums = new int[count];
for (int i = 0; i < count; i++) {
nums[i] = head.val;
head = head.next;
}
Arrays.sort(nums);
for (int i = nums.length - 1; i >= 0; i--) {
ListNode temp = new ListNode();
temp.val = nums[i];
temp.next = res;
res = temp;
}
return res;
}
}