[LeetCode] 147. Insertion Sort List

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode] 147. Insertion Sort List相关的知识,希望对你有一定的参考价值。

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

思路:从旧链表中取出来,插入新链表中。

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
public class Solution {
    public ListNode insertionSortList(ListNode head) {
        if (head == null || head.next == null) {
            return head;
        }
        ListNode dummy = new ListNode(Integer.MIN_VALUE);
        while (head != null) {
            ListNode current = head;
            head = head.next;
            
            ListNode pre = dummy;
            ListNode p = dummy.next;
            while (p != null && p.val < current.val) {
                p = p.next;
                pre = pre.next;
            }
            ListNode tmp = pre.next;
            pre.next = current;
            current.next = tmp;
        }
        return dummy.next;
    }
}

 

以上是关于[LeetCode] 147. Insertion Sort List的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode-147-Insertion Sort List

LeetCode 147. Insertion Sort List

Leetcode 147. Insertion Sort List 插入排序 in Java

leetcode 147 Insertion Sort List

Leetcode147. Insertion Sort List

LeetCode 147. Insertion Sort List