Skip to content

Commit 5de44c3

Browse files
Update
2 parents 574cef4 + eb9cdae commit 5de44c3

22 files changed

+1407
-37
lines changed

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@
107107
5. [数组:209.长度最小的子数组](./problems/0209.长度最小的子数组.md)
108108
6. [数组:区间和](./problems/kamacoder/0058.区间和.md)
109109
6. [数组:59.螺旋矩阵II](./problems/0059.螺旋矩阵II.md)
110-
7. [数组:区间和](./problems/kamacoder/0058.区间和.md)
111110
8. [数组:开发商购买土地](./problems/kamacoder/0044.开发商购买土地.md)
112111
9. [数组:总结篇](./problems/数组总结篇.md)
113112

problems/0116.填充每个节点的下一个右侧节点指针.md

+51
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,56 @@ class Solution {
169169
}
170170
```
171171

172+
```Java
173+
// 迭代法
174+
class Solution {
175+
public Node connect(Node root) {
176+
if (root == null) {
177+
return root;
178+
}
179+
180+
Queue<Node> queue = new LinkedList<>();
181+
182+
queue.add(root);
183+
184+
while (!queue.isEmpty()) {
185+
int size = queue.size();
186+
187+
// 每层的第一个节点
188+
Node cur = queue.poll();
189+
if (cur.left != null) {
190+
queue.add(cur.left);
191+
}
192+
if (cur.right != null) {
193+
queue.add(cur.right);
194+
}
195+
196+
// 因为已经移除了每层的第一个节点,所以将 0 改为 1
197+
while (size-- > 1) {
198+
Node next = queue.poll();
199+
200+
if (next.left != null) {
201+
queue.add(next.left);
202+
}
203+
if (next.right != null) {
204+
queue.add(next.right);
205+
}
206+
207+
// 当前节点指向同层的下一个节点
208+
cur.next = next;
209+
// 更新当前节点
210+
cur = next;
211+
}
212+
213+
// 每层的最后一个节点不指向 null 在力扣也能过
214+
cur.next = null;
215+
}
216+
217+
return root;
218+
}
219+
}
220+
```
221+
172222
### Python
173223

174224
```python
@@ -443,3 +493,4 @@ public class Solution
443493
<a href="https://programmercarl.com/other/kstar.html" target="_blank">
444494
<img src="../pics/网站星球宣传海报.jpg" width="1000"/>
445495
</a>
496+

problems/0226.翻转二叉树.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
![226.翻转二叉树](https://code-thinking-1253855093.file.myqcloud.com/pics/20210203192644329.png)
1616

17-
这道题目背后有一个让程序员心酸的故事,听说 Homebrew的作者Max Howell,就是因为没在白板上写出翻转二叉树,最后被Google拒绝了。(真假不做判断,权当一个乐子哈
17+
这道题目背后有一个让程序员心酸的故事,听说 Homebrew的作者Max Howell,就是因为没在白板上写出翻转二叉树,最后被Google拒绝了。(真假不做判断,全当一个乐子哈
1818

1919
## 算法公开课
2020

@@ -1033,3 +1033,4 @@ public TreeNode InvertTree(TreeNode root) {
10331033
<a href="https://programmercarl.com/other/kstar.html" target="_blank">
10341034
<img src="../pics/网站星球宣传海报.jpg" width="1000"/>
10351035
</a>
1036+

problems/0232.用栈实现队列.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ queue.empty(); // 返回 false
4444

4545
这是一道模拟题,不涉及到具体算法,考察的就是对栈和队列的掌握程度。
4646

47-
使用栈来模式队列的行为,如果仅仅用一个栈,是一定不行的,所以需要两个栈**一个输入栈,一个输出栈**,这里要注意输入栈和输出栈的关系。
47+
使用栈来模拟队列的行为,如果仅仅用一个栈,是一定不行的,所以需要两个栈**一个输入栈,一个输出栈**,这里要注意输入栈和输出栈的关系。
4848

4949
下面动画模拟以下队列的执行过程:
5050

problems/0343.整数拆分.md

+24
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,8 @@ class Solution:
309309

310310
```
311311
### Go
312+
313+
动态规划
312314
```go
313315
func integerBreak(n int) int {
314316
/**
@@ -338,6 +340,28 @@ func max(a, b int) int{
338340
}
339341
```
340342

343+
贪心
344+
```go
345+
func integerBreak(n int) int {
346+
if n == 2 {
347+
return 1
348+
}
349+
if n == 3 {
350+
return 2
351+
}
352+
if n == 4 {
353+
return 4
354+
}
355+
result := 1
356+
for n > 4 {
357+
result *= 3
358+
n -= 3
359+
}
360+
result *= n
361+
return result
362+
}
363+
```
364+
341365
### Javascript
342366
```Javascript
343367
var integerBreak = function(n) {

problems/0416.分割等和子集.md

+39
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,7 @@ class Solution:
453453
```
454454

455455
### Go:
456+
一维dp
456457
```go
457458
// 分割等和子集 动态规划
458459
// 时间复杂度O(n^2) 空间复杂度O(n)
@@ -480,6 +481,44 @@ func canPartition(nums []int) bool {
480481
}
481482
```
482483

484+
二维dp
485+
```go
486+
func canPartition(nums []int) bool {
487+
sum := 0
488+
for _, val := range nums {
489+
sum += val
490+
}
491+
if sum % 2 == 1 {
492+
return false
493+
}
494+
target := sum / 2
495+
dp := make([][]int, len(nums))
496+
for i := range dp {
497+
dp[i] = make([]int, target + 1)
498+
}
499+
for j := nums[0]; j <= target; j++ {
500+
dp[0][j] = nums[0]
501+
}
502+
for i := 1; i < len(nums); i++ {
503+
for j := 0; j <= target; j++ {
504+
if j < nums[i] {
505+
dp[i][j] = dp[i-1][j]
506+
} else {
507+
dp[i][j] = max(dp[i-1][j], dp[i-1][j-nums[i]] + nums[i])
508+
}
509+
}
510+
}
511+
return dp[len(nums)-1][target] == target
512+
}
513+
514+
func max(x, y int) int {
515+
if x > y {
516+
return x
517+
}
518+
return y
519+
}
520+
```
521+
483522
### JavaScript:
484523

485524
```js

problems/0977.有序数组的平方.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@ class Solution:
207207
new_list.append(nums[left] ** 2)
208208
left += 1
209209
return new_list[::-1]
210+
```
210211

211212
### Go:
212213

@@ -539,7 +540,7 @@ public class Solution {
539540
return result;
540541
}
541542
}
542-
543+
```
543544
C# LINQ:
544545
```csharp
545546
public class Solution {
@@ -553,3 +554,4 @@ public class Solution {
553554
<a href="https://programmercarl.com/other/kstar.html" target="_blank">
554555
<img src="../pics/网站星球宣传海报.jpg" width="1000"/>
555556
</a>
557+

problems/kamacoder/0094.城市间货物运输I-SPFA.md

+71
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,77 @@ SPFA(队列优化版Bellman_ford) 在理论上 时间复杂度更胜一筹
352352
## 其他语言版本
353353

354354
### Java
355+
```Java
356+
import java.util.*;
357+
358+
public class Main {
359+
360+
// Define an inner class Edge
361+
static class Edge {
362+
int from;
363+
int to;
364+
int val;
365+
public Edge(int from, int to, int val) {
366+
this.from = from;
367+
this.to = to;
368+
this.val = val;
369+
}
370+
}
371+
372+
public static void main(String[] args) {
373+
// Input processing
374+
Scanner sc = new Scanner(System.in);
375+
int n = sc.nextInt();
376+
int m = sc.nextInt();
377+
List<List<Edge>> graph = new ArrayList<>();
378+
379+
for (int i = 0; i <= n; i++) {
380+
graph.add(new ArrayList<>());
381+
}
382+
383+
for (int i = 0; i < m; i++) {
384+
int from = sc.nextInt();
385+
int to = sc.nextInt();
386+
int val = sc.nextInt();
387+
graph.get(from).add(new Edge(from, to, val));
388+
}
389+
390+
// Declare the minDist array to record the minimum distance form current node to the original node
391+
int[] minDist = new int[n + 1];
392+
Arrays.fill(minDist, Integer.MAX_VALUE);
393+
minDist[1] = 0;
394+
395+
// Declare a queue to store the updated nodes instead of traversing all nodes each loop for more efficiency
396+
Queue<Integer> queue = new LinkedList<>();
397+
queue.offer(1);
398+
399+
// Declare a boolean array to record if the current node is in the queue to optimise the processing
400+
boolean[] isInQueue = new boolean[n + 1];
401+
402+
while (!queue.isEmpty()) {
403+
int curNode = queue.poll();
404+
isInQueue[curNode] = false; // Represents the current node is not in the queue after being polled
405+
for (Edge edge : graph.get(curNode)) {
406+
if (minDist[edge.to] > minDist[edge.from] + edge.val) { // Start relaxing the edge
407+
minDist[edge.to] = minDist[edge.from] + edge.val;
408+
if (!isInQueue[edge.to]) { // Don't add the node if it's already in the queue
409+
queue.offer(edge.to);
410+
isInQueue[edge.to] = true;
411+
}
412+
}
413+
}
414+
}
415+
416+
// Outcome printing
417+
if (minDist[n] == Integer.MAX_VALUE) {
418+
System.out.println("unconnected");
419+
} else {
420+
System.out.println(minDist[n]);
421+
}
422+
}
423+
}
424+
425+
```
355426

356427
### Python
357428

problems/kamacoder/0094.城市间货物运输I.md

+57
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,63 @@ Bellman_ford 是可以计算 负权值的单源最短路算法。
392392
## 其他语言版本
393393

394394
### Java
395+
```Java
396+
public class Main {
397+
398+
// Define an inner class Edge
399+
static class Edge {
400+
int from;
401+
int to;
402+
int val;
403+
public Edge(int from, int to, int val) {
404+
this.from = from;
405+
this.to = to;
406+
this.val = val;
407+
}
408+
}
409+
410+
public static void main(String[] args) {
411+
// Input processing
412+
Scanner sc = new Scanner(System.in);
413+
int n = sc.nextInt();
414+
int m = sc.nextInt();
415+
List<Edge> edges = new ArrayList<>();
416+
417+
for (int i = 0; i < m; i++) {
418+
int from = sc.nextInt();
419+
int to = sc.nextInt();
420+
int val = sc.nextInt();
421+
edges.add(new Edge(from, to, val));
422+
}
423+
424+
// Represents the minimum distance from the current node to the original node
425+
int[] minDist = new int[n + 1];
426+
427+
// Initialize the minDist array
428+
Arrays.fill(minDist, Integer.MAX_VALUE);
429+
minDist[1] = 0;
430+
431+
// Starts the loop to relax all edges n - 1 times to update minDist array
432+
for (int i = 1; i < n; i++) {
433+
434+
for (Edge edge : edges) {
435+
// Updates the minDist array
436+
if (minDist[edge.from] != Integer.MAX_VALUE && (minDist[edge.from] + edge.val) < minDist[edge.to]) {
437+
minDist[edge.to] = minDist[edge.from] + edge.val;
438+
}
439+
}
440+
}
441+
442+
// Outcome printing
443+
if (minDist[n] == Integer.MAX_VALUE) {
444+
System.out.println("unconnected");
445+
} else {
446+
System.out.println(minDist[n]);
447+
}
448+
}
449+
}
450+
451+
```
395452

396453
### Python
397454

0 commit comments

Comments
 (0)