IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 【LeetCode每日一题】——143.重排链表 -> 正文阅读

[数据结构与算法]【LeetCode每日一题】——143.重排链表

一【题目类别】

  • 双指针

二【题目难度】

  • 中等

三【题目编号】

  • 143.重排链表

四【题目描述】

  • 给定一个单链表 L 的头节点 head ,单链表 L 表示为:
L0 → L1 → … → Ln - 1 → Ln
  • 请将其重新排列后变为:
L0 → Ln → L1 → Ln - 1 → L2 → Ln - 2 → …
  • 不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。

五【题目示例】

  • 示例 1:

    • 在这里插入图片描述
    • 输入:head = [1,2,3,4]
    • 输出:[1,4,2,3]
  • 示例 2:

    • 在这里插入图片描述
    • 输入:head = [1,2,3,4,5]
    • 输出:[1,5,2,4,3]

六【解题思路】

  • 这道题思路很清晰,就是具体实现起来步骤较繁琐,但都是考察了链表的基础内容
  • 首先通过快慢指针找到链表中点,将链表分割成前后两部分
  • 然后将后半部分逆置
  • 然后将两部分合并
  • 最后返回结果即可

七【题目提示】

  • 链表的长度范围为 [ 1 , 5 ? 1 0 4 ] 链表的长度范围为 [1, 5 * 10^4] 链表的长度范围为[1,5?104]
  • 1 < = n o d e . v a l < = 1000 1 <= node.val <= 1000 1<=node.val<=1000

八【时间频度】

  • 时间复杂度: O ( n ) O(n) O(n),其中 n n n 是链表的长度
  • 空间复杂度: O ( 1 ) O(1) O(1)

九【代码实现】

  1. Java语言版
package DoublePointer;

public class p143_ReorderList {

    int val;
    p143_ReorderList next;

    p143_ReorderList() {
    }

    p143_ReorderList(int val) {
        this.val = val;
    }

    p143_ReorderList(int val, p143_ReorderList next) {
        this.val = val;
        this.next = next;
    }

    public static void main(String[] args) {
        p143_ReorderList l1 = new p143_ReorderList(1);
        p143_ReorderList l2 = new p143_ReorderList(2);
        p143_ReorderList l3 = new p143_ReorderList(3);
        p143_ReorderList l4 = new p143_ReorderList(4);
        l1.next = l2;
        l2.next = l3;
        l3.next = l4;
        l4.next = null;
        reorderList(l1);
        p143_ReorderList cur = l1;
        while (cur != null) {
            System.out.print(cur.val + " ");
            cur = cur.next;
        }
    }

    public static void reorderList(p143_ReorderList head) {
        p143_ReorderList slow = head;
        p143_ReorderList fast = head;
        while (fast.next != null && fast.next.next != null) {
            slow = slow.next;
            fast = fast.next.next;
        }
        p143_ReorderList l1 = head;
        p143_ReorderList l2 = slow.next;
        slow.next = null;
        l2 = reverse(l2);
        merge(l1, l2);
    }

    public static p143_ReorderList reverse(p143_ReorderList head) {
        p143_ReorderList pre = null;
        p143_ReorderList cur = head;
        while (cur != null) {
            p143_ReorderList temp = cur.next;
            cur.next = pre;
            pre = cur;
            cur = temp;
        }
        return pre;
    }

    public static void merge(p143_ReorderList l1, p143_ReorderList l2) {
        p143_ReorderList temp1;
        p143_ReorderList temp2;
        while (l1 != null && l2 != null) {
            temp1 = l1.next;
            temp2 = l2.next;
            l1.next = l2;
            l1 = temp1;
            l2.next = l1;
            l2 = temp2;
        }
    }

}
  1. C语言版
#include<stdio.h>
#include<stdlib.h>
#include<stdlib.h>

struct ListNode {
	int val;
	struct ListNode *next;
};

struct ListNode* reverse_p143_ReorderList(struct ListNode* head)
{
	struct ListNode* dummyHead = NULL;
	struct ListNode* cur = head;
	while (cur != NULL)
	{
		struct ListNode* temp = cur->next;
		cur->next = dummyHead;
		dummyHead = cur;
		cur = temp;
	}
	return dummyHead;
}

void merge(struct ListNode* h1, struct ListNode* h2)
{
	struct ListNode* temp1;
	struct ListNode* temp2;
	while (h1 != NULL && h2 != NULL)
	{
		temp1 = h1->next;
		temp2 = h2->next;
		h1->next = h2;
		h1 = temp1;
		h2->next = h1;
		h2 = temp2;
	}
}

void reorderList(struct ListNode* head)
{
	struct ListNode* slow = head;
	struct ListNode* fast = head;
	while (fast->next != NULL && fast->next->next != NULL)
	{
		slow = slow->next;
		fast = fast->next->next;
	}
	struct ListNode* l1 = head;
	struct ListNode* l2 = slow->next;
	slow->next = NULL;
	l2 = reverse_p143_ReorderList(l2);
	merge(l1, l2);
}

/*主函数省略*/

十【提交结果】

  1. Java语言版
    在这里插入图片描述

  2. C语言版
    在这里插入图片描述

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-10-17 12:59:48  更:2022-10-17 13:00:37 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/25 19:30:43-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码