mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-08 00:43:04 +08:00
Merge branch 'youngyangyang04:master' into master
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
|
||||
## 1. 两数之和
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/two-sum/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/two-sum/)
|
||||
|
||||
给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
# 5.最长回文子串
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/longest-palindromic-substring/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/longest-palindromic-substring/)
|
||||
|
||||
给你一个字符串 s,找到 s 中最长的回文子串。
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
# 第15题. 三数之和
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/3sum/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/3sum/)
|
||||
|
||||
给你一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?请你找出所有满足条件且不重复的三元组。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 17.电话号码的字母组合
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/letter-combinations-of-a-phone-number/)
|
||||
|
||||
给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合。
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
# 第18题. 四数之和
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/4sum/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/4sum/)
|
||||
|
||||
题意:给定一个包含 n 个整数的数组 nums 和一个目标值 target,判断 nums 中是否存在四个元素 a,b,c 和 d ,使得 a + b + c + d 的值与 target 相等?找出所有满足条件且不重复的四元组。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
## 19.删除链表的倒数第N个节点
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/remove-nth-node-from-end-of-list/)
|
||||
|
||||
给你一个链表,删除链表的倒数第 n 个结点,并且返回链表的头结点。
|
||||
|
||||
@ -289,6 +289,30 @@ func removeNthFromEnd(_ head: ListNode?, _ n: Int) -> ListNode? {
|
||||
return dummyHead.next
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
PHP:
|
||||
```php
|
||||
function removeNthFromEnd($head, $n) {
|
||||
// 设置虚拟头节点
|
||||
$dummyHead = new ListNode();
|
||||
$dummyHead->next = $head;
|
||||
|
||||
$slow = $fast = $dummyHead;
|
||||
while($n-- && $fast != null){
|
||||
$fast = $fast->next;
|
||||
}
|
||||
// fast 再走一步,让 slow 指向删除节点的上一个节点
|
||||
$fast = $fast->next;
|
||||
while ($fast != NULL) {
|
||||
$fast = $fast->next;
|
||||
$slow = $slow->next;
|
||||
}
|
||||
$slow->next = $slow->next->next;
|
||||
return $dummyHead->next;
|
||||
}
|
||||
```
|
||||
|
||||
Scala:
|
||||
```scala
|
||||
object Solution {
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
# 20. 有效的括号
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/valid-parentheses/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/valid-parentheses/)
|
||||
|
||||
给定一个只包括 '(',')','{','}','[',']' 的字符串,判断字符串是否有效。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
## 24. 两两交换链表中的节点
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/swap-nodes-in-pairs/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/swap-nodes-in-pairs/)
|
||||
|
||||
给定一个链表,两两交换其中相邻的节点,并返回交换后的链表。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
## 27. 移除元素
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/remove-element/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/remove-element/)
|
||||
|
||||
给你一个数组 nums 和一个值 val,你需要 原地 移除所有数值等于 val 的元素,并返回移除后数组的新长度。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 28. 实现 strStr()
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/implement-strstr/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/implement-strstr/)
|
||||
|
||||
实现 strStr() 函数。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 31.下一个排列
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/next-permutation/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/next-permutation/)
|
||||
|
||||
实现获取 下一个排列 的函数,算法需要将给定数字序列重新排列成字典序中下一个更大的排列。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 35.搜索插入位置
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/search-insert-position/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/search-insert-position/)
|
||||
|
||||
给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 37. 解数独
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/sudoku-solver/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/sudoku-solver/)
|
||||
|
||||
编写一个程序,通过填充空格来解决数独问题。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 39. 组合总和
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/combination-sum/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/combination-sum/)
|
||||
|
||||
给定一个无重复元素的数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 40.组合总和II
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/combination-sum-ii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/combination-sum-ii/)
|
||||
|
||||
给定一个数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 42. 接雨水
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/trapping-rain-water/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/trapping-rain-water/)
|
||||
|
||||
给定 n 个非负整数表示每个宽度为 1 的柱子的高度图,计算按此排列的柱子,下雨之后能接多少雨水。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 45.跳跃游戏II
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/jump-game-ii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/jump-game-ii/)
|
||||
|
||||
给定一个非负整数数组,你最初位于数组的第一个位置。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 46.全排列
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/permutations/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/permutations/)
|
||||
|
||||
给定一个 没有重复 数字的序列,返回其所有可能的全排列。
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
## 47.全排列 II
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/permutations-ii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/permutations-ii/)
|
||||
|
||||
给定一个可包含重复数字的序列 nums ,按任意顺序 返回所有不重复的全排列。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 第51题. N皇后
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/n-queens/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/n-queens/)
|
||||
|
||||
n 皇后问题 研究的是如何将 n 个皇后放置在 n×n 的棋盘上,并且使皇后彼此之间不能相互攻击。
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
# 52. N皇后II
|
||||
|
||||
题目链接:https://leetcode-cn.com/problems/n-queens-ii/
|
||||
题目链接:https://leetcode.cn/problems/n-queens-ii/
|
||||
|
||||
n 皇后问题研究的是如何将 n 个皇后放置在 n×n 的棋盘上,并且使皇后彼此之间不能相互攻击。
|
||||
|
||||
@ -44,7 +44,7 @@ n 皇后问题研究的是如何将 n 个皇后放置在 n×n 的棋盘上,并
|
||||
# 思路
|
||||
|
||||
|
||||
想看:[51.N皇后](https://mp.weixin.qq.com/s/lU_QwCMj6g60nh8m98GAWg) ,基本没有区别
|
||||
详看:[51.N皇后](https://mp.weixin.qq.com/s/lU_QwCMj6g60nh8m98GAWg) ,基本没有区别
|
||||
|
||||
# C++代码
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 53. 最大子序和
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/maximum-subarray/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/maximum-subarray/)
|
||||
|
||||
给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
## 53. 最大子序和
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/maximum-subarray/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/maximum-subarray/)
|
||||
|
||||
给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
## 54.螺旋矩阵
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/spiral-matrix/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/spiral-matrix/)
|
||||
|
||||
给你一个 m 行 n 列的矩阵 matrix ,请按照 顺时针螺旋顺序 ,返回矩阵中的所有元素。
|
||||
|
||||
@ -128,8 +128,8 @@ public:
|
||||
|
||||
## 类似题目
|
||||
|
||||
* [59.螺旋矩阵II](https://leetcode-cn.com/problems/spiral-matrix-ii/)
|
||||
* [剑指Offer 29.顺时针打印矩阵](https://leetcode-cn.com/problems/shun-shi-zhen-da-yin-ju-zhen-lcof/)
|
||||
* [59.螺旋矩阵II](https://leetcode.cn/problems/spiral-matrix-ii/)
|
||||
* [剑指Offer 29.顺时针打印矩阵](https://leetcode.cn/problems/shun-shi-zhen-da-yin-ju-zhen-lcof/)
|
||||
|
||||
## 其他语言版本
|
||||
Python:
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 55. 跳跃游戏
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/jump-game/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/jump-game/)
|
||||
|
||||
给定一个非负整数数组,你最初位于数组的第一个位置。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 56. 合并区间
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/merge-intervals/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/merge-intervals/)
|
||||
|
||||
给出一个区间的集合,请合并所有重叠的区间。
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
## 59.螺旋矩阵II
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/spiral-matrix-ii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/spiral-matrix-ii/)
|
||||
|
||||
给定一个正整数 n,生成一个包含 1 到 n^2 所有元素,且元素按顺时针顺序螺旋排列的正方形矩阵。
|
||||
|
||||
@ -24,6 +24,8 @@
|
||||
|
||||
## 思路
|
||||
|
||||
为了利于录友们理解,我特意录制了视频,[拿下螺旋矩阵,《代码随想录》第五题!](https://www.bilibili.com/video/BV1SL4y1N7mV),结合本篇文章一起看,效果更佳。
|
||||
|
||||
这道题目可以说在面试中出现频率较高的题目,**本题并不涉及到什么算法,就是模拟过程,但却十分考察对代码的掌控能力。**
|
||||
|
||||
要如何画出这个螺旋排列的正方形矩阵呢?
|
||||
@ -74,7 +76,7 @@ public:
|
||||
int loop = n / 2; // 每个圈循环几次,例如n为奇数3,那么loop = 1 只是循环一圈,矩阵中间的值需要单独处理
|
||||
int mid = n / 2; // 矩阵中间的位置,例如:n为3, 中间的位置就是(1,1),n为5,中间位置为(2, 2)
|
||||
int count = 1; // 用来给矩阵中每一个空格赋值
|
||||
int offset = 1; // 每一圈循环,需要控制每一条边遍历的长度
|
||||
int offset = 1; // 需要控制每一条边遍历的长度,每次循环右边界收缩一位
|
||||
int i,j;
|
||||
while (loop --) {
|
||||
i = startx;
|
||||
@ -82,11 +84,11 @@ public:
|
||||
|
||||
// 下面开始的四个for就是模拟转了一圈
|
||||
// 模拟填充上行从左到右(左闭右开)
|
||||
for (j = starty; j < starty + n - offset; j++) {
|
||||
for (j = starty; j < n - offset; j++) {
|
||||
res[startx][j] = count++;
|
||||
}
|
||||
// 模拟填充右列从上到下(左闭右开)
|
||||
for (i = startx; i < startx + n - offset; i++) {
|
||||
for (i = startx; i < n - offset; i++) {
|
||||
res[i][j] = count++;
|
||||
}
|
||||
// 模拟填充下行从右到左(左闭右开)
|
||||
@ -103,7 +105,7 @@ public:
|
||||
starty++;
|
||||
|
||||
// offset 控制每一圈里每一条边遍历的长度
|
||||
offset += 2;
|
||||
offset += 1;
|
||||
}
|
||||
|
||||
// 如果n为奇数的话,需要单独给矩阵最中间的位置赋值
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
# 62.不同路径
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/unique-paths/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/unique-paths/)
|
||||
|
||||
一个机器人位于一个 m x n 网格的左上角 (起始点在下图中标记为 “Start” )。
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
# 63. 不同路径 II
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/unique-paths-ii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/unique-paths-ii/)
|
||||
|
||||
一个机器人位于一个 m x n 网格的左上角 (起始点在下图中标记为“Start” )。
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<p align="center"><strong><a href="https://mp.weixin.qq.com/s/tqCxrMEU-ajQumL1i8im9A">参与本项目</a>,贡献其他语言版本的代码,拥抱开源,让更多学习算法的小伙伴们收益!</strong></p>
|
||||
|
||||
# 70. 爬楼梯
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/climbing-stairs/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/climbing-stairs/)
|
||||
|
||||
假设你正在爬楼梯。需要 n 阶你才能到达楼顶。
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
## 70. 爬楼梯
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/climbing-stairs/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/climbing-stairs/)
|
||||
|
||||
假设你正在爬楼梯。需要 n 阶你才能到达楼顶。
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
## 72. 编辑距离
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/edit-distance/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/edit-distance/)
|
||||
|
||||
给你两个单词 word1 和 word2,请你计算出将 word1 转换成 word2 所使用的最少操作数 。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 第77题. 组合
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/combinations/ )
|
||||
[力扣题目链接](https://leetcode.cn/problems/combinations/ )
|
||||
|
||||
给定两个整数 n 和 k,返回 1 ... n 中所有可能的 k 个数的组合。
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
文中的回溯法是可以剪枝优化的,本篇我们继续来看一下题目77. 组合。
|
||||
|
||||
链接:https://leetcode-cn.com/problems/combinations/
|
||||
链接:https://leetcode.cn/problems/combinations/
|
||||
|
||||
**看本篇之前,需要先看[回溯算法:求组合问题!](https://programmercarl.com/0077.组合.html)**。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 78.子集
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/subsets/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/subsets/)
|
||||
|
||||
给定一组不含重复元素的整数数组 nums,返回该数组所有可能的子集(幂集)。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 84.柱状图中最大的矩形
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/largest-rectangle-in-histogram/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/largest-rectangle-in-histogram/)
|
||||
|
||||
给定 n 个非负整数,用来表示柱状图中各个柱子的高度。每个柱子彼此相邻,且宽度为 1 。
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
## 90.子集II
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/subsets-ii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/subsets-ii/)
|
||||
|
||||
给定一个可能包含重复元素的整数数组 nums,返回该数组所有可能的子集(幂集)。
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
# 93.复原IP地址
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/restore-ip-addresses/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/restore-ip-addresses/)
|
||||
|
||||
给定一个只包含数字的字符串,复原它并返回所有可能的 IP 地址格式。
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
# 96.不同的二叉搜索树
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/unique-binary-search-trees/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/unique-binary-search-trees/)
|
||||
|
||||
给定一个整数 n,求以 1 ... n 为节点组成的二叉搜索树有多少种?
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 98.验证二叉搜索树
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/validate-binary-search-tree/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/validate-binary-search-tree/)
|
||||
|
||||
|
||||
给定一个二叉树,判断其是否是一个有效的二叉搜索树。
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
# 100. 相同的树
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/same-tree/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/same-tree/)
|
||||
|
||||
给定两个二叉树,编写一个函数来检验它们是否相同。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 101. 对称二叉树
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/symmetric-tree/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/symmetric-tree/)
|
||||
|
||||
给定一个二叉树,检查它是否是镜像对称的。
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
|
||||
# 102.二叉树的层序遍历
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/binary-tree-level-order-traversal/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/binary-tree-level-order-traversal/)
|
||||
|
||||
给你一个二叉树,请你返回其按 层序遍历 得到的节点值。 (即逐层地,从左到右访问所有节点)。
|
||||
|
||||
@ -379,7 +379,7 @@ pub fn level_order(root: Option<Rc<RefCell<TreeNode>>>) -> Vec<Vec<i32>> {
|
||||
|
||||
# 107.二叉树的层次遍历 II
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/binary-tree-level-order-traversal-ii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/binary-tree-level-order-traversal-ii/)
|
||||
|
||||
给定一个二叉树,返回其节点值自底向上的层次遍历。 (即按从叶子节点所在层到根节点所在的层,逐层从左向右遍历)
|
||||
|
||||
@ -660,7 +660,7 @@ pub fn level_order(root: Option<Rc<RefCell<TreeNode>>>) -> Vec<Vec<i32>> {
|
||||
|
||||
# 199.二叉树的右视图
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/binary-tree-right-side-view/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/binary-tree-right-side-view/)
|
||||
|
||||
给定一棵二叉树,想象自己站在它的右侧,按照从顶部到底部的顺序,返回从右侧所能看到的节点值。
|
||||
|
||||
@ -907,7 +907,7 @@ object Solution {
|
||||
|
||||
# 637.二叉树的层平均值
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/average-of-levels-in-binary-tree/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/average-of-levels-in-binary-tree/)
|
||||
|
||||
给定一个非空二叉树, 返回一个由每层节点平均值组成的数组。
|
||||
|
||||
@ -1163,7 +1163,7 @@ object Solution {
|
||||
|
||||
# 429.N叉树的层序遍历
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/n-ary-tree-level-order-traversal/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/n-ary-tree-level-order-traversal/)
|
||||
|
||||
给定一个 N 叉树,返回其节点值的层序遍历。 (即从左到右,逐层遍历)。
|
||||
|
||||
@ -1434,7 +1434,7 @@ object Solution {
|
||||
|
||||
# 515.在每个树行中找最大值
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/find-largest-value-in-each-tree-row/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/find-largest-value-in-each-tree-row/)
|
||||
|
||||
您需要在二叉树的每一行中找到最大的值。
|
||||
|
||||
@ -1668,7 +1668,7 @@ object Solution {
|
||||
|
||||
# 116.填充每个节点的下一个右侧节点指针
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/populating-next-right-pointers-in-each-node/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/populating-next-right-pointers-in-each-node/)
|
||||
|
||||
给定一个完美二叉树,其所有叶子节点都在同一层,每个父节点都有两个子节点。二叉树定义如下:
|
||||
|
||||
@ -1956,7 +1956,7 @@ object Solution {
|
||||
```
|
||||
# 117.填充每个节点的下一个右侧节点指针II
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/populating-next-right-pointers-in-each-node-ii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/populating-next-right-pointers-in-each-node-ii/)
|
||||
|
||||
思路:
|
||||
|
||||
@ -2236,7 +2236,7 @@ object Solution {
|
||||
```
|
||||
# 104.二叉树的最大深度
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/maximum-depth-of-binary-tree/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/maximum-depth-of-binary-tree/)
|
||||
|
||||
给定一个二叉树,找出其最大深度。
|
||||
|
||||
@ -2477,7 +2477,7 @@ object Solution {
|
||||
|
||||
# 111.二叉树的最小深度
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/minimum-depth-of-binary-tree/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/minimum-depth-of-binary-tree/)
|
||||
|
||||
相对于 104.二叉树的最大深度 ,本题还也可以使用层序遍历的方式来解决,思路是一样的。
|
||||
|
||||
|
@ -12,7 +12,7 @@
|
||||
|
||||
# 104.二叉树的最大深度
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/maximum-depth-of-binary-tree/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/maximum-depth-of-binary-tree/)
|
||||
|
||||
给定一个二叉树,找出其最大深度。
|
||||
|
||||
@ -223,7 +223,7 @@ impl Solution {
|
||||
|
||||
# 559.n叉树的最大深度
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/maximum-depth-of-n-ary-tree/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/maximum-depth-of-n-ary-tree/)
|
||||
|
||||
给定一个 n 叉树,找到其最大深度。
|
||||
|
||||
|
@ -12,7 +12,7 @@
|
||||
|
||||
# 106.从中序与后序遍历序列构造二叉树
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/construct-binary-tree-from-inorder-and-postorder-traversal/)
|
||||
|
||||
根据一棵树的中序遍历与后序遍历构造二叉树。
|
||||
|
||||
@ -394,7 +394,7 @@ public:
|
||||
|
||||
# 105.从前序与中序遍历序列构造二叉树
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/construct-binary-tree-from-preorder-and-inorder-traversal/)
|
||||
|
||||
根据一棵树的前序遍历与中序遍历构造二叉树。
|
||||
|
||||
@ -1091,7 +1091,53 @@ class Solution_0106 {
|
||||
}
|
||||
```
|
||||
|
||||
## Scala
|
||||
|
||||
106 从中序与后序遍历序列构造二叉树
|
||||
|
||||
```scala
|
||||
object Solution {
|
||||
def buildTree(inorder: Array[Int], postorder: Array[Int]): TreeNode = {
|
||||
// 1、如果长度为0,则直接返回null
|
||||
var len = inorder.size
|
||||
if (len == 0) return null
|
||||
// 2、后序数组的最后一个元素是当前根元素
|
||||
var rootValue = postorder(len - 1)
|
||||
var root: TreeNode = new TreeNode(rootValue, null, null)
|
||||
if (len == 1) return root // 如果数组只有一个节点,就直接返回
|
||||
// 3、在中序数组中找到切割点的索引
|
||||
var delimiterIndex: Int = inorder.indexOf(rootValue)
|
||||
// 4、切分数组往下迭代
|
||||
root.left = buildTree(inorder.slice(0, delimiterIndex), postorder.slice(0, delimiterIndex))
|
||||
root.right = buildTree(inorder.slice(delimiterIndex + 1, len), postorder.slice(delimiterIndex, len - 1))
|
||||
root // 返回root,return关键字可以省略
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
105 从前序与中序遍历序列构造二叉树
|
||||
|
||||
```scala
|
||||
object Solution {
|
||||
def buildTree(preorder: Array[Int], inorder: Array[Int]): TreeNode = {
|
||||
// 1、如果长度为0,直接返回空
|
||||
var len = inorder.size
|
||||
if (len == 0) return null
|
||||
// 2、前序数组的第一个元素是当前子树根节点
|
||||
var rootValue = preorder(0)
|
||||
var root = new TreeNode(rootValue, null, null)
|
||||
if (len == 1) return root // 如果数组元素只有一个,那么返回根节点
|
||||
// 3、在中序数组中,找到切割点
|
||||
var delimiterIndex = inorder.indexOf(rootValue)
|
||||
|
||||
// 4、切分数组往下迭代
|
||||
root.left = buildTree(preorder.slice(1, delimiterIndex + 1), inorder.slice(0, delimiterIndex))
|
||||
root.right = buildTree(preorder.slice(delimiterIndex + 1, preorder.size), inorder.slice(delimiterIndex + 1, len))
|
||||
|
||||
root
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
-----------------------
|
||||
<div align="center"><img src=https://code-thinking.cdn.bcebos.com/pics/01二维码一.jpg width=500> </img></div>
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 108.将有序数组转换为二叉搜索树
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/convert-sorted-array-to-binary-search-tree/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/convert-sorted-array-to-binary-search-tree/)
|
||||
|
||||
将一个按照升序排列的有序数组,转换为一棵高度平衡二叉搜索树。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 110.平衡二叉树
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/balanced-binary-tree/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/balanced-binary-tree/)
|
||||
|
||||
给定一个二叉树,判断它是否是高度平衡的二叉树。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 111.二叉树的最小深度
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/minimum-depth-of-binary-tree/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/minimum-depth-of-binary-tree/)
|
||||
|
||||
给定一个二叉树,找出其最小深度。
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# 112. 路径总和
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/path-sum/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/path-sum/)
|
||||
|
||||
给定一个二叉树和一个目标和,判断该树中是否存在根节点到叶子节点的路径,这条路径上所有节点值相加等于目标和。
|
||||
|
||||
@ -216,7 +216,7 @@ public:
|
||||
|
||||
# 113. 路径总和ii
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/path-sum-ii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/path-sum-ii/)
|
||||
|
||||
给定一个二叉树和一个目标和,找到所有从根节点到叶子节点路径总和等于给定目标和的路径。
|
||||
|
||||
@ -300,7 +300,7 @@ public:
|
||||
|
||||
## java
|
||||
|
||||
lc112
|
||||
### 0112.路径总和
|
||||
```java
|
||||
class solution {
|
||||
public boolean haspathsum(treenode root, int targetsum) {
|
||||
@ -373,7 +373,7 @@ class solution {
|
||||
|
||||
```
|
||||
|
||||
0113.路径总和-ii
|
||||
### 0113.路径总和-ii
|
||||
|
||||
```java
|
||||
class solution {
|
||||
@ -436,7 +436,7 @@ class Solution {
|
||||
|
||||
## python
|
||||
|
||||
0112.路径总和
|
||||
### 0112.路径总和
|
||||
|
||||
**递归**
|
||||
```python
|
||||
@ -488,7 +488,7 @@ class solution:
|
||||
return false
|
||||
```
|
||||
|
||||
0113.路径总和-ii
|
||||
### 0113.路径总和-ii
|
||||
|
||||
**递归**
|
||||
```python
|
||||
@ -545,7 +545,7 @@ class Solution:
|
||||
|
||||
## go
|
||||
|
||||
112. 路径总和
|
||||
### 112. 路径总和
|
||||
|
||||
```go
|
||||
//递归法
|
||||
@ -570,7 +570,7 @@ func hasPathSum(root *TreeNode, targetSum int) bool {
|
||||
}
|
||||
```
|
||||
|
||||
113. 路径总和 II
|
||||
### 113. 路径总和 II
|
||||
|
||||
```go
|
||||
/**
|
||||
@ -612,7 +612,7 @@ func traverse(node *TreeNode, result *[][]int, currPath *[]int, targetSum int) {
|
||||
|
||||
## javascript
|
||||
|
||||
0112.路径总和
|
||||
### 0112.路径总和
|
||||
|
||||
**递归**
|
||||
```javascript
|
||||
@ -673,7 +673,7 @@ let hasPathSum = function(root, targetSum) {
|
||||
};
|
||||
```
|
||||
|
||||
0113.路径总和-ii
|
||||
### 0113.路径总和-ii
|
||||
|
||||
**递归**
|
||||
```javascript
|
||||
@ -768,7 +768,7 @@ let pathSum = function(root, targetSum) {
|
||||
|
||||
## TypeScript
|
||||
|
||||
> 0112.路径总和
|
||||
### 0112.路径总和
|
||||
|
||||
**递归法:**
|
||||
|
||||
@ -850,7 +850,7 @@ function hasPathSum(root: TreeNode | null, targetSum: number): boolean {
|
||||
};
|
||||
```
|
||||
|
||||
> 0112.路径总和 ii
|
||||
### 0112.路径总和 ii
|
||||
|
||||
**递归法:**
|
||||
|
||||
@ -888,7 +888,7 @@ function pathSum(root: TreeNode | null, targetSum: number): number[][] {
|
||||
|
||||
## Swift
|
||||
|
||||
0112.路径总和
|
||||
### 0112.路径总和
|
||||
|
||||
**递归**
|
||||
|
||||
@ -955,7 +955,7 @@ func hasPathSum(_ root: TreeNode?, _ targetSum: Int) -> Bool {
|
||||
}
|
||||
```
|
||||
|
||||
0113.路径总和 II
|
||||
### 0113.路径总和 II
|
||||
|
||||
**递归**
|
||||
|
||||
@ -1126,7 +1126,90 @@ int** pathSum(struct TreeNode* root, int targetSum, int* returnSize, int** retur
|
||||
}
|
||||
```
|
||||
|
||||
## Scala
|
||||
|
||||
### 0112.路径总和
|
||||
|
||||
**递归:**
|
||||
```scala
|
||||
object Solution {
|
||||
def hasPathSum(root: TreeNode, targetSum: Int): Boolean = {
|
||||
if(root == null) return false
|
||||
var res = false
|
||||
|
||||
def traversal(curNode: TreeNode, sum: Int): Unit = {
|
||||
if (res) return // 如果直接标记为true了,就没有往下递归的必要了
|
||||
if (curNode.left == null && curNode.right == null && sum == targetSum) {
|
||||
res = true
|
||||
return
|
||||
}
|
||||
// 往下递归
|
||||
if (curNode.left != null) traversal(curNode.left, sum + curNode.left.value)
|
||||
if (curNode.right != null) traversal(curNode.right, sum + curNode.right.value)
|
||||
}
|
||||
|
||||
traversal(root, root.value)
|
||||
res // return关键字可以省略
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
**迭代:**
|
||||
```scala
|
||||
object Solution {
|
||||
import scala.collection.mutable
|
||||
def hasPathSum(root: TreeNode, targetSum: Int): Boolean = {
|
||||
if (root == null) return false
|
||||
val stack = mutable.Stack[(TreeNode, Int)]()
|
||||
stack.push((root, root.value)) // 将根节点元素放入stack
|
||||
while (!stack.isEmpty) {
|
||||
val curNode = stack.pop() // 取出栈顶元素
|
||||
// 如果遇到叶子节点,看当前的值是否等于targetSum,等于则返回true
|
||||
if (curNode._1.left == null && curNode._1.right == null && curNode._2 == targetSum) {
|
||||
return true
|
||||
}
|
||||
if (curNode._1.right != null) stack.push((curNode._1.right, curNode._2 + curNode._1.right.value))
|
||||
if (curNode._1.left != null) stack.push((curNode._1.left, curNode._2 + curNode._1.left.value))
|
||||
}
|
||||
false //如果没有返回true,即可返回false,return关键字可以省略
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### 0113.路径总和 II
|
||||
|
||||
**递归:**
|
||||
```scala
|
||||
object Solution {
|
||||
import scala.collection.mutable.ListBuffer
|
||||
def pathSum(root: TreeNode, targetSum: Int): List[List[Int]] = {
|
||||
val res = ListBuffer[List[Int]]()
|
||||
if (root == null) return res.toList
|
||||
val path = ListBuffer[Int]();
|
||||
|
||||
def traversal(cur: TreeNode, count: Int): Unit = {
|
||||
if (cur.left == null && cur.right == null && count == 0) {
|
||||
res.append(path.toList)
|
||||
return
|
||||
}
|
||||
if (cur.left != null) {
|
||||
path.append(cur.left.value)
|
||||
traversal(cur.left, count - cur.left.value)
|
||||
path.remove(path.size - 1)
|
||||
}
|
||||
if (cur.right != null) {
|
||||
path.append(cur.right.value)
|
||||
traversal(cur.right, count - cur.right.value)
|
||||
path.remove(path.size - 1)
|
||||
}
|
||||
}
|
||||
|
||||
path.append(root.value)
|
||||
traversal(root, targetSum - root.value)
|
||||
res.toList
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
-----------------------
|
||||
<div align="center"><img src=https://code-thinking.cdn.bcebos.com/pics/01二维码一.jpg width=500> </img></div>
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
## 115.不同的子序列
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/distinct-subsequences/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/distinct-subsequences/)
|
||||
|
||||
给定一个字符串 s 和一个字符串 t ,计算在 s 的子序列中 t 出现的个数。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 116. 填充每个节点的下一个右侧节点指针
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/populating-next-right-pointers-in-each-node/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/populating-next-right-pointers-in-each-node/)
|
||||
|
||||
给定一个 完美二叉树 ,其所有叶子节点都在同一层,每个父节点都有两个子节点。二叉树定义如下:
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
## 121. 买卖股票的最佳时机
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/best-time-to-buy-and-sell-stock/)
|
||||
|
||||
给定一个数组 prices ,它的第 i 个元素 prices[i] 表示一支给定股票第 i 天的价格。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 122.买卖股票的最佳时机II
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-ii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/best-time-to-buy-and-sell-stock-ii/)
|
||||
|
||||
给定一个数组,它的第 i 个元素是一支给定股票第 i 天的价格。
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
## 122.买卖股票的最佳时机II
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-ii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/best-time-to-buy-and-sell-stock-ii/)
|
||||
|
||||
给定一个数组,它的第 i 个元素是一支给定股票第 i 天的价格。
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
## 123.买卖股票的最佳时机III
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-iii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/best-time-to-buy-and-sell-stock-iii/)
|
||||
|
||||
|
||||
给定一个数组,它的第 i 个元素是一支给定的股票在第 i 天的价格。
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 127. 单词接龙
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/word-ladder/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/word-ladder/)
|
||||
|
||||
字典 wordList 中从单词 beginWord 和 endWord 的 转换序列 是一个按下述规格形成的序列:
|
||||
* 序列中第一个单词是 beginWord 。
|
||||
|
@ -5,7 +5,7 @@
|
||||
<p align="center"><strong><a href="https://mp.weixin.qq.com/s/tqCxrMEU-ajQumL1i8im9A">参与本项目</a>,贡献其他语言版本的代码,拥抱开源,让更多学习算法的小伙伴们收益!</strong></p>
|
||||
# 129. 求根节点到叶节点数字之和
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/sum-root-to-leaf-numbers/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/sum-root-to-leaf-numbers/)
|
||||
|
||||
# 思路
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 131.分割回文串
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/palindrome-partitioning/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/palindrome-partitioning/)
|
||||
|
||||
给定一个字符串 s,将 s 分割成一些子串,使每个子串都是回文串。
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
# 132. 分割回文串 II
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/palindrome-partitioning-ii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/palindrome-partitioning-ii/)
|
||||
|
||||
给你一个字符串 s,请你将 s 分割成一些子串,使每个子串都是回文。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 134. 加油站
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/gas-station/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/gas-station/)
|
||||
|
||||
在一条环路上有 N 个加油站,其中第 i 个加油站有汽油 gas[i] 升。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 135. 分发糖果
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/candy/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/candy/)
|
||||
|
||||
老师想给孩子们分发糖果,有 N 个孩子站成了一条直线,老师会根据每个孩子的表现,预先给他们评分。
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
## 139.单词拆分
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/word-break/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/word-break/)
|
||||
|
||||
给定一个非空字符串 s 和一个包含非空单词的列表 wordDict,判定 s 是否可以被空格拆分为一个或多个在字典中出现的单词。
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
## 142.环形链表II
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/linked-list-cycle-ii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/linked-list-cycle-ii/)
|
||||
|
||||
题意:
|
||||
给定一个链表,返回链表开始入环的第一个节点。 如果链表无环,则返回 null。
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
# 150. 逆波兰表达式求值
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/evaluate-reverse-polish-notation/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/evaluate-reverse-polish-notation/)
|
||||
|
||||
根据 逆波兰表示法,求表达式的值。
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
# 151.翻转字符串里的单词
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/reverse-words-in-a-string/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/reverse-words-in-a-string/)
|
||||
|
||||
给定一个字符串,逐个翻转字符串中的每个单词。
|
||||
|
||||
@ -234,7 +234,7 @@ public:
|
||||
}
|
||||
|
||||
void removeExtraSpaces(string& s) {//去除所有空格并在相邻单词之间添加空格, 快慢指针。
|
||||
int slow = 0; //整体思想参考Leetcode: 27. 移除元素:https://leetcode-cn.com/problems/remove-element/
|
||||
int slow = 0; //整体思想参考Leetcode: 27. 移除元素:https://leetcode.cn/problems/remove-element/
|
||||
for (int i = 0; i < s.size(); ++i) { //
|
||||
if (s[i] != ' ') { //遇到非空格就处理,即删除所有空格。
|
||||
if (slow != 0) s[slow++] = ' '; //手动控制空格,给单词之间添加空格。slow != 0说明不是第一个单词,需要在单词前添加空格。
|
||||
@ -817,6 +817,53 @@ object Solution {
|
||||
```
|
||||
|
||||
|
||||
PHP:
|
||||
```php
|
||||
function reverseWords($s) {
|
||||
$this->removeExtraSpaces($s);
|
||||
$this->reverseString($s, 0, strlen($s)-1);
|
||||
// 将每个单词反转
|
||||
$start = 0;
|
||||
for ($i = 0; $i <= strlen($s); $i++) {
|
||||
// 到达空格或者串尾,说明一个单词结束。进行翻转。
|
||||
if ($i == strlen($s) || $s[$i] == ' ') {
|
||||
// 翻转,注意是左闭右闭 []的翻转。
|
||||
$this->reverseString($s, $start, $i-1);
|
||||
// +1: 单词与单词直接有个空格
|
||||
$start = $i + 1;
|
||||
}
|
||||
}
|
||||
return $s;
|
||||
}
|
||||
|
||||
// 移除多余空格
|
||||
function removeExtraSpaces(&$s){
|
||||
$slow = 0;
|
||||
for ($i = 0; $i < strlen($s); $i++) {
|
||||
if ($s[$i] != ' ') {
|
||||
if ($slow != 0){
|
||||
$s[$slow++] = ' ';
|
||||
}
|
||||
while ($i < strlen($s) && $s[$i] != ' ') {
|
||||
$s[$slow++] = $s[$i++];
|
||||
}
|
||||
}
|
||||
}
|
||||
// 移动覆盖处理,丢弃多余的脏数据。
|
||||
$s = substr($s,0,$slow);
|
||||
return ;
|
||||
}
|
||||
|
||||
// 翻转字符串
|
||||
function reverseString(&$s, $start, $end) {
|
||||
for ($i = $start, $j = $end; $i < $j; $i++, $j--) {
|
||||
$tmp = $s[$i];
|
||||
$s[$i] = $s[$j];
|
||||
$s[$j] = $tmp;
|
||||
}
|
||||
return ;
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
-----------------------
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
## 188.买卖股票的最佳时机IV
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-iv/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/best-time-to-buy-and-sell-stock-iv/)
|
||||
|
||||
给定一个整数数组 prices ,它的第 i 个元素 prices[i] 是一支给定的股票在第 i 天的价格。
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
## 198.打家劫舍
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/house-robber/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/house-robber/)
|
||||
|
||||
你是一个专业的小偷,计划偷窃沿街的房屋。每间房内都藏有一定的现金,影响你偷窃的唯一制约因素就是相邻的房屋装有相互连通的防盗系统,如果两间相邻的房屋在同一晚上被小偷闯入,系统会自动报警。
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
# 第202题. 快乐数
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/happy-number/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/happy-number/)
|
||||
|
||||
编写一个算法来判断一个数 n 是不是快乐数。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 203.移除链表元素
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/remove-linked-list-elements/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/remove-linked-list-elements/)
|
||||
|
||||
题意:删除链表中等于给定值 val 的所有节点。
|
||||
|
||||
@ -28,6 +28,8 @@
|
||||
|
||||
# 思路
|
||||
|
||||
为了方便大家理解,我特意录制了视频:[手把手带你学会操作链表,移除链表元素](https://www.bilibili.com/video/BV18B4y1s7R9),结合视频在看本题解,事半功倍。
|
||||
|
||||
这里以链表 1 4 2 4 来举例,移除元素4。
|
||||
|
||||

|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 205. 同构字符串
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/isomorphic-strings/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/isomorphic-strings/)
|
||||
|
||||
给定两个字符串 s 和 t,判断它们是否是同构的。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 206.反转链表
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/reverse-linked-list/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/reverse-linked-list/)
|
||||
|
||||
题意:反转一个单链表。
|
||||
|
||||
@ -496,8 +496,26 @@ struct ListNode* reverseList(struct ListNode* head){
|
||||
return reverse(NULL, head);
|
||||
}
|
||||
```
|
||||
Scala:
|
||||
|
||||
|
||||
|
||||
PHP:
|
||||
```php
|
||||
// 双指针法:
|
||||
function reverseList($head) {
|
||||
$cur = $head;
|
||||
$pre = NULL;
|
||||
while($cur){
|
||||
$temp = $cur->next;
|
||||
$cur->next = $pre;
|
||||
$pre = $cur;
|
||||
$cur = $temp;
|
||||
}
|
||||
return $pre;
|
||||
}
|
||||
```
|
||||
|
||||
Scala:
|
||||
双指针法:
|
||||
```scala
|
||||
object Solution {
|
||||
@ -529,6 +547,7 @@ object Solution {
|
||||
cur.next = pre
|
||||
reverse(cur, tmp) // 此时cur成为前一个节点,tmp是当前节点
|
||||
}
|
||||
|
||||
}
|
||||
```
|
||||
-----------------------
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 209.长度最小的子数组
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/minimum-size-subarray-sum/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/minimum-size-subarray-sum/)
|
||||
|
||||
给定一个含有 n 个正整数的数组和一个正整数 s ,找出该数组中满足其和 ≥ s 的长度最小的 连续 子数组,并返回其长度。如果不存在符合条件的子数组,返回 0。
|
||||
|
||||
@ -133,8 +133,8 @@ public:
|
||||
|
||||
## 相关题目推荐
|
||||
|
||||
* [904.水果成篮](https://leetcode-cn.com/problems/fruit-into-baskets/)
|
||||
* [76.最小覆盖子串](https://leetcode-cn.com/problems/minimum-window-substring/)
|
||||
* [904.水果成篮](https://leetcode.cn/problems/fruit-into-baskets/)
|
||||
* [76.最小覆盖子串](https://leetcode.cn/problems/minimum-window-substring/)
|
||||
|
||||
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
## 213.打家劫舍II
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/house-robber-ii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/house-robber-ii/)
|
||||
|
||||
你是一个专业的小偷,计划偷窃沿街的房屋,每间房内都藏有一定的现金。这个地方所有的房屋都 围成一圈 ,这意味着第一个房屋和最后一个房屋是紧挨着的。同时,相邻的房屋装有相互连通的防盗系统,如果两间相邻的房屋在同一晚上被小偷闯入,系统会自动报警 。
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
# 216.组合总和III
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/combination-sum-iii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/combination-sum-iii/)
|
||||
|
||||
找出所有相加之和为 n 的 k 个数的组合。组合中只允许含有 1 - 9 的正整数,并且每种组合中不存在重复的数字。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 222.完全二叉树的节点个数
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/count-complete-tree-nodes/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/count-complete-tree-nodes/)
|
||||
|
||||
给出一个完全二叉树,求出该树的节点个数。
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
# 225. 用队列实现栈
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/implement-stack-using-queues/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/implement-stack-using-queues/)
|
||||
|
||||
使用队列实现栈的下列操作:
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 226.翻转二叉树
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/invert-binary-tree/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/invert-binary-tree/)
|
||||
|
||||
翻转一棵二叉树。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 232.用栈实现队列
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/implement-queue-using-stacks/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/implement-queue-using-stacks/)
|
||||
|
||||
使用栈实现队列的下列操作:
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 234.回文链表
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/palindrome-linked-list/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/palindrome-linked-list/)
|
||||
|
||||
请判断一个链表是否为回文链表。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 235. 二叉搜索树的最近公共祖先
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-search-tree/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/lowest-common-ancestor-of-a-binary-search-tree/)
|
||||
|
||||
给定一个二叉搜索树, 找到该树中两个指定节点的最近公共祖先。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 236. 二叉树的最近公共祖先
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/lowest-common-ancestor-of-a-binary-tree/)
|
||||
|
||||
给定一个二叉树, 找到该树中两个指定节点的最近公共祖先。
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
# 239. 滑动窗口最大值
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/sliding-window-maximum/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/sliding-window-maximum/)
|
||||
|
||||
给定一个数组 nums,有一个大小为 k 的滑动窗口从数组的最左侧移动到数组的最右侧。你只可以看到在滑动窗口内的 k 个数字。滑动窗口每次只向右移动一位。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
## 242.有效的字母异位词
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/valid-anagram/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/valid-anagram/)
|
||||
|
||||
给定两个字符串 s 和 t ,编写一个函数来判断 t 是否是 s 的字母异位词。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 257. 二叉树的所有路径
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/binary-tree-paths/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/binary-tree-paths/)
|
||||
|
||||
给定一个二叉树,返回所有从根节点到叶子节点的路径。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
## 279.完全平方数
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/perfect-squares/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/perfect-squares/)
|
||||
|
||||
给定正整数 n,找到若干个完全平方数(比如 1, 4, 9, 16, ...)使得它们的和等于 n。你需要让组成和的完全平方数的个数最少。
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
# 283. 移动零
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/move-zeroes/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/move-zeroes/)
|
||||
|
||||
给定一个数组 nums,编写一个函数将所有 0 移动到数组的末尾,同时保持非零元素的相对顺序。
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
## 300.最长递增子序列
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/longest-increasing-subsequence/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/longest-increasing-subsequence/)
|
||||
|
||||
给你一个整数数组 nums ,找到其中最长严格递增子序列的长度。
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
## 309.最佳买卖股票时机含冷冻期
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-with-cooldown/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/best-time-to-buy-and-sell-stock-with-cooldown/)
|
||||
|
||||
给定一个整数数组,其中第 i 个元素代表了第 i 天的股票价格 。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
## 322. 零钱兑换
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/coin-change/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/coin-change/)
|
||||
|
||||
给定不同面额的硬币 coins 和一个总金额 amount。编写一个函数来计算可以凑成总金额所需的最少的硬币个数。如果没有任何一种硬币组合能组成总金额,返回 -1。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 332.重新安排行程
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/reconstruct-itinerary/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/reconstruct-itinerary/)
|
||||
|
||||
给定一个机票的字符串二维数组 [from, to],子数组中的两个成员分别表示飞机出发和降落的机场地点,对该行程进行重新规划排序。所有这些机票都属于一个从 JFK(肯尼迪国际机场)出发的先生,所以该行程必须从 JFK 开始。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
## 337.打家劫舍 III
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/house-robber-iii/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/house-robber-iii/)
|
||||
|
||||
在上次打劫完一条街道之后和一圈房屋后,小偷又发现了一个新的可行窃的地区。这个地区只有一个入口,我们称之为“根”。 除了“根”之外,每栋房子有且只有一个“父“房子与之相连。一番侦察之后,聪明的小偷意识到“这个地方的所有房屋的排列类似于一棵二叉树”。 如果两个直接相连的房子在同一天晚上被打劫,房屋将自动报警。
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
# 343. 整数拆分
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/integer-break/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/integer-break/)
|
||||
|
||||
给定一个正整数 n,将其拆分为至少两个正整数的和,并使这些整数的乘积最大化。 返回你可以获得的最大乘积。
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
# 344.反转字符串
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/reverse-string/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/reverse-string/)
|
||||
|
||||
编写一个函数,其作用是将输入的字符串反转过来。输入字符串以字符数组 char[] 的形式给出。
|
||||
|
||||
@ -266,6 +266,38 @@ public class Solution
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
PHP:
|
||||
```php
|
||||
// 双指针
|
||||
// 一:
|
||||
function reverseString(&$s) {
|
||||
$left = 0;
|
||||
$right = count($s)-1;
|
||||
while($left<$right){
|
||||
$temp = $s[$left];
|
||||
$s[$left] = $s[$right];
|
||||
$s[$right] = $temp;
|
||||
$left++;
|
||||
$right--;
|
||||
}
|
||||
}
|
||||
|
||||
// 二:
|
||||
function reverseString(&$s) {
|
||||
$this->reverse($s,0,count($s)-1);
|
||||
}
|
||||
// 按指定位置交换元素
|
||||
function reverse(&$s, $start, $end) {
|
||||
for ($i = $start, $j = $end; $i < $j; $i++, $j--) {
|
||||
$tmp = $s[$i];
|
||||
$s[$i] = $s[$j];
|
||||
$s[$j] = $tmp;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Scala:
|
||||
```scala
|
||||
object Solution {
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
# 347.前 K 个高频元素
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/top-k-frequent-elements/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/top-k-frequent-elements/)
|
||||
|
||||
给定一个非空的整数数组,返回其中出现频率前 k 高的元素。
|
||||
|
||||
|
@ -12,7 +12,7 @@
|
||||
|
||||
## 349. 两个数组的交集
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/intersection-of-two-arrays/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/intersection-of-two-arrays/)
|
||||
|
||||
题意:给定两个数组,编写一个函数来计算它们的交集。
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
# 376. 摆动序列
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/wiggle-subsequence/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/wiggle-subsequence/)
|
||||
|
||||
如果连续数字之间的差严格地在正数和负数之间交替,则数字序列称为摆动序列。第一个差(如果存在的话)可能是正数或负数。少于两个元素的序列也是摆动序列。
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
## 377. 组合总和 Ⅳ
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/combination-sum-iv/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/combination-sum-iv/)
|
||||
|
||||
难度:中等
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
# 383. 赎金信
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/ransom-note/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/ransom-note/)
|
||||
|
||||
给定一个赎金信 (ransom) 字符串和一个杂志(magazine)字符串,判断第一个字符串 ransom 能不能由第二个字符串 magazines 里面的字符构成。如果可以构成,返回 true ;否则返回 false。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
## 392.判断子序列
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/is-subsequence/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/is-subsequence/)
|
||||
|
||||
给定字符串 s 和 t ,判断 s 是否为 t 的子序列。
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
# 404.左叶子之和
|
||||
|
||||
[力扣题目链接](https://leetcode-cn.com/problems/sum-of-left-leaves/)
|
||||
[力扣题目链接](https://leetcode.cn/problems/sum-of-left-leaves/)
|
||||
|
||||
计算给定二叉树的所有左叶子之和。
|
||||
|
||||
@ -516,6 +516,44 @@ int sumOfLeftLeaves(struct TreeNode* root){
|
||||
}
|
||||
```
|
||||
|
||||
## Scala
|
||||
|
||||
**递归:**
|
||||
```scala
|
||||
object Solution {
|
||||
def sumOfLeftLeaves(root: TreeNode): Int = {
|
||||
if(root == null) return 0
|
||||
var midValue = 0
|
||||
if(root.left != null && root.left.left == null && root.left.right == null){
|
||||
midValue = root.left.value
|
||||
}
|
||||
// return关键字可以省略
|
||||
midValue + sumOfLeftLeaves(root.left) + sumOfLeftLeaves(root.right)
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
**迭代:**
|
||||
```scala
|
||||
object Solution {
|
||||
import scala.collection.mutable
|
||||
def sumOfLeftLeaves(root: TreeNode): Int = {
|
||||
val stack = mutable.Stack[TreeNode]()
|
||||
if (root == null) return 0
|
||||
stack.push(root)
|
||||
var sum = 0
|
||||
while (!stack.isEmpty) {
|
||||
val curNode = stack.pop()
|
||||
if (curNode.left != null && curNode.left.left == null && curNode.left.right == null) {
|
||||
sum += curNode.left.value // 如果满足条件就累加
|
||||
}
|
||||
if (curNode.right != null) stack.push(curNode.right)
|
||||
if (curNode.left != null) stack.push(curNode.left)
|
||||
}
|
||||
sum
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
-----------------------
|
||||
<div align="center"><img src=https://code-thinking.cdn.bcebos.com/pics/01二维码一.jpg width=500> </img></div>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user