您的位置:首页 > 产品设计 > UI/UE

[Leetcode]Binary Tree Longest Consecutive Sequence

2016-03-22 16:04 375 查看


Binary Tree Longest Consecutive Sequence

Total Accepted: 437 Total Submissions: 1351 Difficulty: Medium

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
,not
3-2-1
,
so return 
2
.

class Solution {
public:
int res;
int longestConsecutive(TreeNode* root) {
if(root==NULL) return 0;
res=0;
dfs(root,1);
return res;
}

void dfs(TreeNode* f, int cnt) {
if(cnt>res) {
res=cnt;
}
if(f->left) {
if(f->val<f->left->val) dfs(f->left,cnt+1);
else dfs(f->left,1);
}
if(f->right) {
if(f->val<f->right->val) dfs(f->right,cnt+1);
else dfs(f->right,1);
}
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  leetcode c++