147. Insertion Sort List

Posted 鸵鸟

tags:

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

class Solution {
    public ListNode insertionSortList(ListNode head) {
        ListNode pre=new ListNode(0);
        ListNode p=head, q;
        while(p!=null)
        {
            q=pre;
            while(q.next!=null&&q.next.val<p.val)
                q=q.next;
            ListNode r=p;
            p=p.next;
            r.next=q.next;
            q.next=r;
        }
        return pre.next;
    }
}

  

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

#Leetcode# 147. Insertion Sort List

147. Insertion Sort List

147. Insertion Sort List

147. Insertion Sort List

[LeetCode] 147. Insertion Sort List

147. Insertion Sort List - Medium