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 116~120 -> 正文阅读

[数据结构与算法]LeetCode 116~120

前言

本文隶属于专栏《LeetCode 刷题汇总》,该专栏为笔者原创,引用请注明来源,不足和错误之处请在评论区帮忙指出,谢谢!

本专栏目录结构请见LeetCode 刷题汇总

Github 配套工程

algorithm

正文

幕布

在这里插入图片描述

幕布链接

116. 填充每个节点的下一个右侧节点指针

题解

官方题解

递归 + ArrayList


package com.shockang.study.algorithm.java.leetcode.leetcode101_200.leetcode116.solution1;


import com.shockang.study.algorithm.java.leetcode.common.Node;

import java.util.ArrayList;
import java.util.List;

/**
 * @author Shockang
 */
public class Solution {
	private List<Node> list = new ArrayList<>();

	public Node connect(Node root) {
		if (root == null) return null;
		helper(root, 0);
		return list.get(0);
	}

	private void helper(Node node, int level) {
		if (node == null) return;
		if (level < list.size()) {
			Node pre = list.get(level);
			pre.next = node;
			list.set(level, node);
		} else {
			list.add(node);
		}
		helper(node.left, level + 1);
		helper(node.right, level + 1);
	}
}

递归 + root.next

package com.shockang.study.algorithm.java.leetcode.leetcode101_200.leetcode116.solution2;

import com.shockang.study.algorithm.java.leetcode.common.Node;

/**
 * @author Shockang
 */
public class Solution {
	public Node connect(Node root) {
		if (root == null) {
			return root;
		}
		if (root.left != null) {
			root.left.next = root.right;
			root.right.next = root.next != null ? root.next.left : null;
			connect(root.left);
			connect(root.right);
		}
		return root;
	}
}

117. 填充每个节点的下一个右侧节点指针 II

题解

官方题解?

BFS


package com.shockang.study.algorithm.java.leetcode.leetcode101_200.leetcode117.solution1;

import com.shockang.study.algorithm.java.leetcode.common.Node;

/**
 * BFS
 *
 * @author Shockang
 */
public class Solution {
	public Node connect(Node root) {
		if (root == null) return root;
		//cur我们可以把它看做是每一层的链表
		Node cur = root;
		while (cur != null) {
			//遍历当前层的时候,为了方便操作在下一层前面添加一个哨兵(注意这里是访问当前层的节点,然后把下一层的节点串起来)
			Node dummy = new Node(0);
			//pre表示访下一层节点的前一个节点
			Node pre = dummy;
			//然后开始遍历当前层的链表
			while (cur != null) {
				if (cur.left != null) {
					//如果当前节点的左子节点不为空,就让pre节点的next指向他,也就是把它串起来
					pre.next = cur.left;
					//然后再更新pre
					pre = pre.next;
				}
				//同理参照左子树
				if (cur.right != null) {
					pre.next = cur.right;
					pre = pre.next;
				}
				//继续访问这一行的下一个节点
				cur = cur.next;
			}
			//把下一层串联成一个链表之后,让他赋值给cur,
			//后续继续循环,直到cur为空为止
			cur = dummy.next;
		}
		return root;
	}
}

118. 杨辉三角

题解

My concise solution in Java?

正斜杠对齐

package com.shockang.study.algorithm.java.leetcode.leetcode101_200.leetcode118.solution1;

import java.util.ArrayList;
import java.util.List;

/**
 * @author Shockang
 */
public class Solution {
	public List<List<Integer>> generate(int numRows) {
		List<List<Integer>> res = new ArrayList();
		List<Integer> row = new ArrayList();
		for (int i = 0; i < numRows; i++) {
			for (int j = row.size() - 1; j >= 1; j--) {
				row.set(j, row.get(j) + row.get(j - 1));
			}
			row.add(1);
			res.add(new ArrayList<>(row));
		}
		return res;
	}
}

119. 杨辉三角 II

题解

Here is my brief O(k) solution

正斜杆对齐

package com.shockang.study.algorithm.java.leetcode.leetcode101_200.leetcode119.solution1;

import java.util.ArrayList;
import java.util.List;

/**
 * @author Shockang
 */
public class Solution {
	public static List<Integer> getRow(int rowIndex) {
		List<Integer> ret = new ArrayList<>(rowIndex + 1);
		ret.add(1);
		for (int i = 1; i <= rowIndex; i++) {
			for (int j = i - 1; j >= 1; j--) {
				int tmp = ret.get(j - 1) + ret.get(j);
				ret.set(j, tmp);
			}
			ret.add(1);
		}
		return ret;
	}
}

120. 三角形最小路径和

题解

DP Solution for Triangle?

动态规划,↑


package com.shockang.study.algorithm.java.leetcode.leetcode101_200.leetcode120.solution1;

import java.util.List;

/**
 * @author Shockang
 */
public class Solution {
	public int minimumTotal(List<List<Integer>> triangle) {
		int n = triangle.size();
		int[] dp = new int[n + 1];
		for (int i = n - 1; i >= 0; i--) {
			for (int j = 0; j <= i; j++) {
				dp[j] = Math.min(dp[j], dp[j + 1]) + triangle.get(i).get(j);
			}
		}
		return dp[0];
	}
}
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-01-24 11:09:15  更:2022-01-24 11:10:34 
 
开发: 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/26 18:45:59-

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