zoukankan      html  css  js  c++  java
  • 687. Longest Univalue Path(相同节点值的最大路径长度)

    Given a binary tree, find the length of the longest path where each node in the path has the same value. This path may or may not pass through the root.

    Note: The length of path between two nodes is represented by the number of edges between them.

    Example 1:

    Input:

                  5
                 / 
                4   5
               /    
              1   1   5
    

    Output:

    2
    

    Example 2:

    Input:

                  1
                 / 
                4   5
               /    
              4   4   5
    

    Output:

    2
    

    Note: The given binary tree has not more than 10000 nodes. The height of the tree is not more than 1000.

    方法一:递归

    因为这道题求的是相同结点的最大路径,肯定需要从根节点遍历到尾部。遍历树一般用递归比较方便。递归调用是从根往子叶上调,但是返回是子叶往根返回。

    /**
     * Definition for a binary tree node.
     * public class TreeNode {
     *     int val;
     *     TreeNode left;
     *     TreeNode right;
     *     TreeNode(int x) { val = x; }
     * }
     */
    class Solution {
        private int path=0;
        public int longestUnivaluePath(TreeNode root) {
            dfs(root);
            return path;
        }
        private int dfs(TreeNode root){
            if(root==null) return 0;
            int left=dfs(root.left);   
            int right=dfs(root.right); 
            int leftPath=root.left!=null&&root.left.val==root.val?left+1:0;  //如果左孩子和父节点相同,则多了一条路径
            int rightPath=root.right!=null&&root.right.val==root.val?right+1:0; //如果右孩子和父节点相同,则多了一条路径
            path=Math.max(path,leftPath+rightPath);  
            return Math.max(leftPath,rightPath);
        }
    }
    苟有恒,何必三更眠五更起;最无益,莫过一日暴十日寒。
  • 相关阅读:
    python之路-随笔 python处理excel文件
    eclipse添加注释
    junit单元测试
    【FLEX教程】#008 开发中的问题笔记(慢更…)
    【FLEX教程】#007 如何让JS调用SWF里的方法
    【总结】2014年度总结
    【转】#100 代码运行框
    【实战项目】【FLEX】#900 实现拖控件功能
    【教程】【FLEX】#006 控件位置的拖动
    【教程】【FLEX】#005 拖动
  • 原文地址:https://www.cnblogs.com/shaer/p/10594854.html
Copyright © 2011-2022 走看看