-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathBinary_Tree_Longest_Consecutive_Sequence_II.cpp
47 lines (43 loc) · 1.68 KB
/
Binary_Tree_Longest_Consecutive_Sequence_II.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
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
pair<int, int> longestConsecutive(TreeNode* root, int& longest) {
if (!root->left and !root->right) {
longest = max(longest, 1);
return {1, 1};
}
int incrSeqLeftLen = 1, decSeqLeftLen = 1, incrSeqRightLen = 1, decSeqRightLen = 1;
if (root->left) {
pair<int, int> leftSeqLen = longestConsecutive(root->left, longest);
if (root->left->val + 1 == root->val) {
incrSeqLeftLen = max(incrSeqLeftLen, leftSeqLen.first + 1);
} else if (root->left->val == root->val + 1) {
decSeqLeftLen = max(decSeqLeftLen, leftSeqLen.second + 1);
}
}
if (root->right) {
pair<int, int> rightSeqLen = longestConsecutive(root->right, longest);
if (root->right->val + 1 == root->val) {
incrSeqRightLen = max(incrSeqRightLen, rightSeqLen.first + 1);
} else if (root->right->val == root->val + 1) {
decSeqRightLen = max(decSeqRightLen, rightSeqLen.second + 1);
}
}
longest = max(longest, max(incrSeqLeftLen + decSeqRightLen - 1, decSeqLeftLen + incrSeqRightLen - 1));
return {max(incrSeqLeftLen, incrSeqRightLen), max(decSeqLeftLen, decSeqRightLen)};
}
public:
int longestConsecutive(TreeNode* root) {
if (!root) return 0;
int longest = INT_MIN;
longestConsecutive(root, longest);
return longest;
}
};