[Locked] Binary Tree Longest Consecutive Sequence

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;
}
时间: 2024-12-27 16:37:32

[Locked] Binary Tree Longest Consecutive Sequence的相关文章

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 p

Binary Tree Longest Consecutive Sequence Leetcode

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 p

Leetcode: 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 p

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 fr

Binary Tree Longest Consecutive Sequence II

Note: O(n) This question is the extension of the version one. The longest consecutive Sequence could be found in "Parent->Children" or "Children -> Parent -> Children". The first situation is the same as previous one. The seco

[LeetCode] 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 p

[LC] 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 p

Binary Tree Longest Consecutive Sequence III

Note: This question is good summary for this kind of problem. 1) Once you get the root, loop through all the children. Get the max up/down/max from the children. 2) set root max = up + down + 1, then comparing with the max got from the children. 3) R

LeetCode 549. Binary Tree Longest Consecutive Sequence II

Given a binary tree, you need to find the length of Longest Consecutive Path in Binary Tree. Especially, this path can be either increasing or decreasing. For example, [1,2,3,4] and [4,3,2,1] are both considered valid, but the path [1,2,4,3] is not v