这道题让采用插入排序的方式排链表
基本思路是构造一个单独的helper, 然后用pre指针来控制helper。最后用差一法把原链表的每个节点都插在helper的相应位置。
先上代码,再逐块分析。
public ListNode insertionSortList(ListNode head) {
if (head == null)
return head;
ListNode helper = new ListNode(0);
ListNode pre = helper;
ListNode cur = head;
while (cur != null) {
while (pre.next != null && pre.next.val < cur.val) {
pre = pre.next;
}
ListNode next = cur.next;
cur.next = pre.next;
pre.next = cur;
cur = next;
pre = helper;
}
return helper.next;
}
寻找合适的插入位置。有两个位置是合适的,第一是helper的末尾,一个是pre,next.val>cur.val
其他情况下只需要移动pre指针的位置就可以了
while (pre.next != null && pre.next.val < cur.val) {
pre = pre.next;
}
但是每次插入结束后一定要记着把pre执政重新指回helper,这样才能决定下一个节点应该插在哪里。
pre = helper;
剩下的工作就是把cur插到pre的前面就可以了
ListNode next = cur.next;
cur.next = pre.next;
pre.next = cur;
cur = next;