-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy path298. Binary Tree Longest Consecutive Sequence.c
89 lines (72 loc) · 1.63 KB
/
298. Binary Tree Longest Consecutive Sequence.c
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
/*
298. Binary Tree Longest Consecutive Sequence
Given a binary tree, find the length of the longest consecutive sequence path.
The path refers to any sequence of nodes from some starting node to any node in the tree along the parent-child connections. The longest consecutive path need to be from parent to child (cannot be the reverse).
For example,
1
\
3
/ \
2 4
\
5
Longest consecutive sequence path is 3-4-5, so return 3.
2
\
3
/
2
/
1
Longest consecutive sequence path is 2-3,not3-2-1, so return 2.
*/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* };
*/
int recursive(struct TreeNode *root, int *max) {
int l, r, n;
if (!root) return 0;
l = recursive(root->left, max);
if (l && root->val + 1 == root->left->val) {
l += 1;
} else {
l = 1;
}
r = recursive(root->right, max);
if (r && root->val + 1 == root->right->val) {
r += 1;
} else {
r = 1;
}
n = l > r ? l : r;
if (*max < n) *max = n;
return n;
}
int longestConsecutive(struct TreeNode* root) {
int max = 0;
recursive(root, &max);
return max;
}
/*
Difficulty:Medium
Total Accepted:31.5K
Total Submissions:76.9K
Companies Google
Related Topics Tree
Similar Questions
Longest Consecutive Sequence
Binary Tree Longest Consecutive Sequence II
*/