-
Notifications
You must be signed in to change notification settings - Fork 0
/
124.二叉树中的最大路径和.go
90 lines (80 loc) · 1.63 KB
/
124.二叉树中的最大路径和.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
* @lc app=leetcode.cn id=124 lang=golang
*
* [124] 二叉树中的最大路径和
*
* https://leetcode-cn.com/problems/binary-tree-maximum-path-sum/description/
*
* algorithms
* Hard (44.83%)
* Likes: 1532
* Dislikes: 0
* Total Accepted: 219.3K
* Total Submissions: 488.2K
* Testcase Example: '[1,2,3]'
*
* 路径 被定义为一条从树中任意节点出发,沿父节点-子节点连接,达到任意节点的序列。同一个节点在一条路径序列中 至多出现一次 。该路径 至少包含一个
* 节点,且不一定经过根节点。
*
* 路径和 是路径中各节点值的总和。
*
* 给你一个二叉树的根节点 root ,返回其 最大路径和 。
*
*
*
* 示例 1:
*
*
* 输入:root = [1,2,3]
* 输出:6
* 解释:最优路径是 2 -> 1 -> 3 ,路径和为 2 + 1 + 3 = 6
*
* 示例 2:
*
*
* 输入:root = [-10,9,20,null,null,15,7]
* 输出:42
* 解释:最优路径是 15 -> 20 -> 7 ,路径和为 15 + 20 + 7 = 42
*
*
*
*
* 提示:
*
*
* 树中节点数目范围是 [1, 3 * 10^4]
* -1000
*
*
*/
// @lc code=start
/**
* Definition for a binary tree node.
* type TreeNode struct {
* Val int
* Left *TreeNode
* Right *TreeNode
* }
*/
func maxPathSum(root *TreeNode) int {
maxSum := -1000
var dfs func(*TreeNode) int
dfs = func(n *TreeNode) int {
if n == nil {
return 0
}
left := max(0, dfs(n.Left))
right := max(0, dfs(n.Right))
maxSum = max(maxSum, n.Val+left+right)
return n.Val + max(left, right)
}
dfs(root)
return maxSum
}
func max(x, y int) int {
if x > y {
return x
}
return y
}
// @lc code=end