leetcode143-Reorder List

题目

给定一个单链表 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]

分析

这道题目的思路其实很明确,先把链表一分为二,再求第二个链表的翻转链表,再把俩个链表相互插入式的连接到一起即可。特别要注意处理一些边界情况,否则很容易空指针

java 复制代码
public class LinkNode {
	int val;
	LinkNode next;

	public LinkNode(int data) {
		this.val = data;
		this.next = null;
	}
}
public class LinkList {
	LinkNode head;
	public LinkList() {
		this.head = null;
	}
	public LinkNode getHead() {
		return this.head;
	}
	//添加元素
	public void addNode(int data) {
		LinkNode node = new LinkNode(data);
		if (this.head == null) {
			this.head = node;
		} else {
			LinkNode cur = this.head;
			while(cur.next != null) {
				cur = cur.next;
			}
			cur.next = node;
		}
	}
	//正序打印
	public void print(LinkNode node) {
		while(node != null) {
			System.out.print(node.val);
			System.out.print(" ");
			node = node.next;
		}
		System.out.println();
	}
	public void insert() {
		if(this.head == null) {
			return;
		}
		int cnt = 0;
		LinkNode p = this.head;
		while(p != null) {
			cnt++;
			p = p.next;
		}
		cnt = cnt / 2;
		p = this.head;
		LinkNode tmpPre = null;
		while(cnt > 0) {
			cnt--;
			tmpPre = p;
			p = p.next;
		}
		tmpPre.next = null;
		LinkNode pre = null;
		while(p != null) {
			LinkNode next = p.next;
			p.next = pre;
			pre = p;
			p = next;
		}
		LinkNode first = this.head;
		LinkNode second = pre;
		while(first != null && second != null) {
			LinkNode secondNext = second.next;
			LinkNode firstNext = first.next;
			if(firstNext == null) {
				first.next = second;
				break;
			}
			second.next = firstNext;
			first.next = second;
			if(firstNext == null) {
				first.next = second;
				break;
			}
			first = firstNext;
			second = secondNext;
			if(first.next == null) {
				first.next = second;
				break;
			}
		}
		print(this.head);
	}

}

public class reorderList {
	public static void main(String[] args) {
		LinkList list = new LinkList();
		list.addNode(1);
		list.addNode(2);
		list.addNode(3);
		list.insert();
	}
}
相关推荐
陈敬雷-充电了么-CEO兼CTO18 分钟前
自然语言处理系列三十四》 语义相似度》同义词词林》代码实战
java·人工智能·python·gpt·ai·自然语言处理·nlp
翎墨袅18 分钟前
easyexcel字典通用转化器
java·excel
夜月行者28 分钟前
如何使用ssm实现物资进销存jsp
java·后端·ssm
程序猿进阶30 分钟前
数据中台架构设计
java·数据库·redis·面试·职场和发展·性能优化·系统架构
小林熬夜学编程34 分钟前
C++第四十弹---从零开始:模拟实现C++中的unordered_set与unordered_map
c语言·开发语言·数据结构·c++·算法·哈希算法·散列表
原来你也是码农34 分钟前
(贪心) LeetCode 1005. K 次取反后最大化的数组和
数据结构·c++·算法·leetcode
程序员清风1 小时前
计算机网络面试真题总结(三)
计算机网络·面试·职场和发展
小菜元1 小时前
Java筑基之路:数组的深入了解学习!
java·学习·数组·深入学习·巩固知识
蒋大钊!1 小时前
Java 中的 BIO, NIO, AIO 原理以及示例代码
java·开发语言·nio
小鱼在乎1 小时前
贪心算法---跳跃游戏(2)
数据结构·算法·贪心算法