forked from soapyigu/LeetCode-Swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BinaryTreeMaximumPathSum.swift
41 lines (34 loc) · 1.14 KB
/
BinaryTreeMaximumPathSum.swift
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
/**
* Question Link: https://leetcode.com/problems/binary-tree-maximum-path-sum/
* Primary idea: Iterate all tree nodes and calculate each node's maximum weight value
* and update maxmum path sum along the iteration
* Time Complexity: O(n), Space Complexity: O(1)
*
* Definition for a binary tree node.
* public class TreeNode {
* public var val: Int
* public var left: TreeNode?
* public var right: TreeNode?
* public init(_ val: Int) {
* self.val = val
* self.left = nil
* self.right = nil
* }
* }
*/
class BinaryTreeMaximumPathSum {
var maxValue = Int.min
func maxPathSum(_ root: TreeNode?) -> Int {
maxWeight(root)
return maxValue
}
private func maxWeight(_ node: TreeNode?) -> Int {
guard let node = node else {
return 0
}
let leftMaxWeight = max(maxWeight(node.left), 0)
let rightMaxWeight = max(maxWeight(node.right), 0)
maxValue = max(maxValue, leftMaxWeight + node.val + rightMaxWeight)
return node.val + max(leftMaxWeight, rightMaxWeight)
}
}