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

leetcode 298: Binary Tree Longest Consecutive Sequence

2015-10-29 16:35 567 查看

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
.
[思路]

递归呗, 连续就+1.

[CODE]

/**
* Definition for a binary tree node.
* public class TreeNode {
*     int val;
*     TreeNode left;
*     TreeNode right;
*     TreeNode(int x) { val = x; }
* }
*/
public class Solution {
int max = 1;

public int longestConsecutive(TreeNode root) {
if(root==null) return 0;
rec(root, 1);
return max;
}

private void rec(TreeNode n, int c) {
if(n.left!=null) {
if(n.val+1 == n.left.val) {rec(n.left, c+1); max = Math.max(max, c+1);}
else rec(n.left, 1);
}

if(n.right!=null) {
if(n.val+1 == n.right.val) {rec(n.right, c+1); max = Math.max(max, c+1);}
else rec(n.right, 1);
}
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: