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.

求二叉树的最长连续序列的长度,要从父节点到子节点。最长连续子序列必须是从root到leaf的方向。 比如 1->2,返回长度2, 比如1->3->4->5,返回3->4->5这个子序列的长度3。

解法:递归遍历binary tree,递归函数传入父节点的值,以帮助子节点判断是否连续。

Java: Time Complexity - O(n),  Space Complexity - O(n)

/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Solution {
private int maxLen = 0; public int longestConsecutive(TreeNode root) {
longestConsecutive(root, 0, 0);
return maxLen;
} private void longestConsecutive(TreeNode root, int lastVal, int curLen) {
if (root == null) return;
if (root.val != lastVal + 1) curLen = 1;
else curLen++;
maxLen = Math.max(maxLen, curLen);
longestConsecutive(root.left, root.val, curLen);
longestConsecutive(root.right, root.val, curLen);
}
}

Python:

class Solution(object):
def longestConsecutive(self, root):
"""
:type root: TreeNode
:rtype: int
"""
self.max_len = 0 def longestConsecutiveHelper(root):
if not root:
return 0 left_len = longestConsecutiveHelper(root.left)
right_len = longestConsecutiveHelper(root.right) cur_len = 1
if root.left and root.left.val == root.val + 1:
cur_len = max(cur_len, left_len + 1);
if root.right and root.right.val == root.val + 1:
cur_len = max(cur_len, right_len + 1) self.max_len = max(self.max_len, cur_len, left_len, right_len) return cur_len longestConsecutiveHelper(root)
return self.max_len

C++:

class Solution {
public:
int longestConsecutive(TreeNode* root) {
if (!root) return 0;
int res = 0;
dfs(root, root->val, 0, res);
return res;
}
void dfs(TreeNode *root, int v, int out, int &res) {
if (!root) return;
if (root->val == v + 1) ++out;
else out = 1;
res = max(res, out);
dfs(root->left, root->val, out, res);
dfs(root->right, root->val, out, res);
}
};

C++:

class Solution {
public:
int longestConsecutive(TreeNode* root) {
if (!root) return 0;
int res = 0;
dfs(root, 1, res);
return res;
}
void dfs(TreeNode *root, int len, int &res) {
res = max(res, len);
if (root->left) {
if (root->left->val == root->val + 1) dfs(root->left, len + 1, res);
else dfs(root->left, 1, res);
}
if (root->right) {
if (root->right->val == root->val + 1) dfs(root->right, len + 1, res);
else dfs(root->right, 1, res);
}
}
};

C++:  

class Solution {
public:
int longestConsecutive(TreeNode* root) {
return helper(root, NULL, 0);
}
int helper(TreeNode *root, TreeNode *p, int res) {
if (!root) return res;
res = (p && root->val == p->val + 1) ? res + 1 : 1;
return max(res, max(helper(root->left, root, res), helper(root->right, root, res)));
}
};

C++: 迭代  

class Solution {
public:
int longestConsecutive(TreeNode* root) {
if (!root) return 0;
int res = 0;
queue<TreeNode*> q;
q.push(root);
while (!q.empty()) {
int len = 1;
TreeNode *t = q.front(); q.pop();
while ((t->left && t->left->val == t->val + 1) || (t->right && t->right->val == t->val + 1)) {
if (t->left && t->left->val == t->val + 1) {
if (t->right) q.push(t->right);
t = t->left;
} else if (t->right && t->right->val == t->val + 1) {
if (t->left) q.push(t->left);
t = t->right;
}
++len;
}
if (t->left) q.push(t->left);
if (t->right) q.push(t->right);
res = max(res, len);
}
return res;
}
};

  

  

类似题目:

[LeetCode] 128. Longest Consecutive Sequence 求最长连续序列

[LeetCode] 300. Longest Increasing Subsequence 最长递增子序列

[LeetCode] 549. Binary Tree Longest Consecutive Sequence II 二叉树最长连续序列 II

[LintCode] 619 Binary Tree Longest Consecutive Sequence III 二叉树最长连续序列 III

All LeetCode Questions List 题目汇总

最新文章

  1. JNI在C 和 C++ 函数实现的不同
  2. [翻译]LSP程序的分类
  3. PS网页设计教程XXX——在PS中创建一个漫画书主题网页布局
  4. Selenium2学习-026-WebUI自动化实战实例-024-获取页面元素
  5. 改Bug总结
  6. HDU 5019 Revenge of GCD(数学)
  7. 关于反射的一个小问题---.NetFrameWork版本不一样导致不同的系统的问题
  8. Java学习之道:jdk环境变量配置方法
  9. UITextField和一个UILabel绑定 浅析
  10. 自己实现的sax XML解析,可能会有误
  11. List Set Map比较
  12. vue不是内部或外部命令解决验证方案
  13. 肝 hibernate 配置and增删改查 and 测试
  14. C#事件の事件聚合器(二)
  15. sqlite "insert or replace" 和 "insert or ignore" 用法
  16. Deploying JAR Package &amp; JSP Page in EBS R12.2.4 WLS
  17. [django]restfulapi请求规范
  18. NOIP模拟题 2017.11.6
  19. c++文件中引用C代码
  20. disconf实践(一)Ubuntu16.04部署disconf

热门文章

  1. python学习类与方法的调用规则
  2. 使用CefSharp在C#访问网站,支持x86和x64
  3. C++中的类所占内存空间总结(转)
  4. 51nod1463 找朋友
  5. 树莓派3 有线网卡静态IP设置
  6. Discrete Cosine Transform
  7. 笨办法学Python
  8. CSS块元素
  9. 1-ESP8266 SDK开发基础入门篇--开发环境搭建
  10. 洛谷 P2085 最小函数值