LeetCode- insertion-sort-list

Sort a linked list using insertion sort.

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public ListNode insertionSortList(ListNode head) {
        if(head == null){
            return null;
        }
        ListNode curNode = head.next;
        ListNode pNode = new ListNode(0);
        pNode.next = head;
        head.next = null;
        while(curNode != null){
            ListNode compareNode = pNode;
            while(compareNode != null){
                if(compareNode.next == null || compareNode.next.val>= curNode.val){
                    break;
                }
                compareNode = compareNode.next;
            }
            ListNode temp = curNode.next;
            curNode.next = compareNode.next;
            compareNode.next = curNode;
            curNode = temp;
        }
        return pNode.next;
    }
}

猜你喜欢

转载自blog.csdn.net/weixin_42146769/article/details/88546495