首页 > 其他 > 详细

[Locked] Binary Tree Longest Consecutive Sequence

时间:2016-02-25 01:36:01      阅读:184      评论:0      收藏:0      [点我收藏+]

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.

分析:

  可看作是二分树上的动态规划,自底向上和自顶向下DFS均可

代码: 

int height(TreeNode *node, int &totalmax) {
    if(!node)
        return 0;
    //自底向上DFS
    int leftlength = height(node->left, totalmax), rightlength = height(node->right, totalmax);
    if(node->left && node->left->val - 1 != node->val)
        leftlength = 0;
    if(node->right && node->right->val - 1 != node->val)
        rightlength = 0;
    int nodemax = max(leftlength + 1, rightlength + 1);
    totalmax = max(totalmax, nodemax);
    return nodemax;
}
int path(TreeNode *root) {
    int totalmax = INT_MIN;
    height(root, totalmax);
    return totalmax;
}

 

[Locked] Binary Tree Longest Consecutive Sequence

原文:http://www.cnblogs.com/littletail/p/5212529.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!