2020-0817-归并排链表(递归和迭代)

68 篇文章 0 订阅
17 篇文章 0 订阅

递归:https://leetcode-cn.com/problems/sort-list/solution/sort-list-gui-bing-pai-xu-lian-biao-by-jyd/

class Solution {
    public ListNode sortList(ListNode head) {
        if (head == null || head.next == null)
            return head;
        ListNode fast = head.next, slow = head;
        while (fast != null && fast.next != null) {
            slow = slow.next;
            fast = fast.next.next;
        }
        ListNode tmp = slow.next;
        slow.next = null;
        ListNode left = sortList(head);
        ListNode right = sortList(tmp);
        ListNode h = new ListNode(0);
        ListNode res = h;
        while (left != null && right != null) {
            if (left.val < right.val) {
                h.next = left;
                left = left.next;
            } else {
                h.next = right;
                right = right.next;
            }
            h = h.next;
        }
        h.next = left != null ? left : right;
        return res.next;
    }
}

作者:jyd
链接:https://leetcode-cn.com/problems/sort-list/solution/sort-list-gui-bing-pai-xu-lian-biao-by-jyd/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

迭代:https://leetcode-cn.com/problems/sort-list/solution/javadie-dai-gui-bing-pai-xu-zhi-zhu-shi-ban-by-shi/

public class Solution {
    public ListNode sortList(ListNode head) {
        //先记录链表的长度,用于判断迭代结束的限制条件
        ListNode temp = head;
        int len = 0;
        while (temp != null) {
            temp = temp.next;
            len++;
        }
        //定义哑节点,用于置放和寻找排序链表的头部
        ListNode dummy = new ListNode(-1);
        dummy.next = head;
        //step表示迭代的步长,h1表示待合并链表的前半部分,h2对应后半部分,pre用于合并链表时的迭代
        int step = 1;
        ListNode h1, h2, pre;
        while (step < len) {
            //每次迭代完把temp和pre拉回来以便于下次迭代
            pre = dummy;
            temp = dummy.next;
            while (temp != null) {
                //把h1的头节点保存下来是为了后续正式排序时索引方便,设置计数cnt是用于找h2
                h1 = temp;
                int cnt = step;
                while (cnt > 0 && temp != null) {
                    cnt--;
                    temp = temp.next;
                }
                //h1的步长没走完或者temp走到链表末端了,说明后面没有待排序节点了,这次迭代直接结束
                if (cnt > 0 || temp == null) break;
                h2 = temp;
                cnt = step;
                //同样的方法走h2的步长
                while (cnt > 0 && temp != null) {
                    cnt--;
                    temp = temp.next;
                }
                //h1和h2都走完,开始合并,len1/2表示待合并链表的长度
                int len1 = step;
                int len2 = step - cnt;
                while (len1 > 0 && len2 > 0) {
                    if (h1.val <= h2.val) {
                        pre.next = h1;
                        h1 = h1.next;
                        len1--;
                    }else {
                        pre.next = h2;
                        h2 = h2.next;
                        len2--;
                    }
                    pre = pre.next;
                }
                //两个待排序链表有没有用完的部分,直接拼接下已经排序好的链表的后面
                while (len1 > 0) {
                    pre.next = h1;
                    h1 = h1.next;
                    len1--;
                    pre = pre.next;
                }
                while (len2 > 0) {
                    pre.next = h2;
                    h2 = h2.next;
                    len2--;
                    pre = pre.next;
                }
                //注意排序完成之后后面一定要接上剩余的链表,否则下一轮遍历将遍历不完整的链表
                pre.next = temp;
            }
            //每次迭代完,步长x2
            step *= 2;
        }
        return dummy.next;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值