ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

【Leetcode】143. 重排链表

2021-05-16 10:01:57  阅读:157  来源: 互联网

标签:head ListNode 143 mid next 链表 null Leetcode cur


题目描述

在这里插入图片描述

// 143. 重排链表

// 给定一个单链表 L:L0→L1→…→Ln-1→Ln ,
// 将其重新排列后变为: L0→Ln→L1→Ln-1→L2→Ln-2→…

// 你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。


题解

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */


// 链表中点 + 链表反转 + 链表合并
// 以
// 1 -> 2 -> 3 -> 5 -> 4
// 为例
// 定义middle函数,取得链表中点或者中间位置靠左的点,记为mid。
// 定义右半边链表mid.next记为rightHead,将mid到rightHead断开。
// 得到:
// 1 -> 2 -> 3
// 4 -> 5
// 定义链表翻转函数reverse,将rightHead翻转,得到
// 1 -> 2 -> 3
// 5 -> 4
// 然后定义merge函数,将两个链表合并

// 执行用时:1 ms, 在所有 Java 提交中击败了100.00%的用户
// 内存消耗:41.4 MB, 在所有 Java 提交中击败了19.44%的用户
class Solution {
    public void reorderList(ListNode head) {
        ListNode mid = middle(head);
		ListNode leftHead = head;
        ListNode rightHead = mid.next;
        mid.next = null;        

        rightHead = reverse(rightHead);
        merge(leftHead, rightHead);
    }

    
    public ListNode middle(ListNode head) {
        if (head == null || head.next == null)
            return head;
        ListNode pre = head;
        ListNode cur = head.next;
        while (cur != null && cur.next != null) {
            cur = cur.next.next;
            pre = pre.next;
        }
        return pre;
    }

    public ListNode reverse(ListNode head) {
        if (head == null || head.next == null)
            return head;
        ListNode pre = head;
        ListNode mid = head.next;
        ListNode cur = head.next.next;
        pre.next = null;
        mid.next = pre;
        while (cur != null) {
            pre = mid;
            mid = cur;
            cur = cur.next;
            mid.next = pre;
        }
        return mid;
    }

    public void merge(ListNode l1, ListNode l2) {
        while (l1 != null && l2 != null) {
            ListNode l1_next = l1.next;
            ListNode l2_next = l2.next;

            l1.next = l2;
            l1 = l1_next;

            l2.next = l1;
            l2 = l2_next;
        }
    }
}

标签:head,ListNode,143,mid,next,链表,null,Leetcode,cur
来源: https://blog.csdn.net/fisherish/article/details/116883151

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有