【Leetcode】Insertion Sort List (Sorting)

这道题让采用插入排序的方式排链表

基本思路是构造一个单独的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;


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值