-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1123_Lowest_Common_Ancestor_of_Deepest_Leaves.cpp
73 lines (61 loc) · 1.92 KB
/
1123_Lowest_Common_Ancestor_of_Deepest_Leaves.cpp
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
/*
Given a rooted binary tree, return the lowest common ancestor of its deepest leaves.
Recall that:
The node of a binary tree is a leaf if and only if it has no children
The depth of the root of the tree is 0, and if the depth of a node is d, the depth of each of its children is d+1.
The lowest common ancestor of a set S of nodes is the node A with the largest depth such that every node in S is in the subtree with root A.
Example 1:
Input: root = [1,2,3]
Output: [1,2,3]
Explanation:
The deepest leaves are the nodes with values 2 and 3.
The lowest common ancestor of these leaves is the node with value 1.
The answer returned is a TreeNode object (not an array) with serialization "[1,2,3]".
Example 2:
Input: root = [1,2,3,4]
Output: [4]
Example 3:
Input: root = [1,2,3,4,5]
Output: [2,4,5]
Constraints:
The given tree will have between 1 and 1000 nodes.
Each node of the tree will have a distinct value between 1 and 1000.
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/lowest-common-ancestor-of-deepest-leaves
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
*/
#define NULL 0
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
class Solution {
private:
TreeNode* lcaDeepestLeaves(TreeNode* root, int& max_depth){
if(NULL==root) return NULL;
TreeNode* res = NULL;
max_depth += 1;
// left
int max_l = max_depth;
TreeNode* tmp_l = lcaDeepestLeaves(root->left, max_l);
// right
int max_r = max_depth;
TreeNode* tmp_r = lcaDeepestLeaves(root->right, max_r);
// self
if(max_l==max_r) res = root;
else if(max_l>max_r) res = tmp_l;
else res = tmp_r;
max_depth = (max_l>max_r)?max_l:max_r;
// return
return res;
}
public:
TreeNode* lcaDeepestLeaves(TreeNode* root) {
int max_depth = 0;
return lcaDeepestLeaves(root, max_depth);
}
};