LeetCode题解-147 对链表进行插入排序

时间:2022-02-11 19:43:53

对链表进行插入排序。

LeetCode题解-147 对链表进行插入排序

插入排序的动画演示如上。从第一个元素开始,该链表可以被认为已经部分排序(用黑色表示)。

每次迭代时,从输入数据中移除一个元素(用红色表示),并原地将其插入到已排好序的链表中。

插入排序算法:

插入排序是迭代的,每次只移动一个元素,直到所有元素可以形成一个有序的输出列表。

每次迭代中,插入排序只从输入数据中移除一个待排序的元素,找到它在序列中适当的位置,并将其插入。

重复直到所有输入数据插入完为止。

示例 1:

输入: 4->2->1->3

输出: 1->2->3->4

示例 2:

输入: -1->5->3->4->0

输出: -1->0->3->4->5

/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode insertionSortList(ListNode head) {
if(head==null)
return null;
ListNode dummyHead = new ListNode(0);
dummyHead.next = head;
ListNode cur, suffix,pos=null;
int move = 0;
pos=head;
while( pos != null){ suffix = pos.next;
cur = dummyHead;
while( cur != suffix &&cur!=null&& cur.next.val < pos.val){
cur = cur.next;
}
ListNode tpos = pos;
pos.next = cur.next;
cur.next = pos;
while(pos.next!=null && pos.next != tpos){
pos = pos.next ;
}
pos.next = suffix;
pos = suffix;
move++;
}
return dummyHead.next;
}
}