Saturday, June 17, 2017

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 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.



Solution:

Use DFS to check whether child's value is root.val + 1.

If child does not meet this condition, we simply set its current max value to be 1.

Otherwise, we increase the current max by 1.

We also maintain a global max value to maintain the global max length throughout the traversal.



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;
        }
        helper(root, 0, root.val);
        return max;
    }
    public void helper(TreeNode root, int curr, int target) {
        if (root == null) {
            return;
        }
        if (root.val == target) {
            curr++;
        }
        else {
            curr = 1;
        }
        max = Math.max(max, curr);
        helper(root.left, curr, root.val + 1);
        helper(root.right, curr, root.val + 1);
    }
}