zoukankan      html  css  js  c++  java
  • 112 Path Sum 路径总和

    给定一棵二叉树和一个总和,确定该树中是否存在根到叶的路径,这条路径的所有值相加等于给定的总和。
    例如:
    给定下面的二叉树和 总和 = 22,
                  5
                 /
                4   8
               /   /
              11  13  4
             /       
            7    2      1
    返回 true, 因为存在总和为 22 的根到叶的路径 5->4->11->2。
    详见:https://leetcode.com/problems/path-sum/description/

    Java实现:

    /**
     * Definition for a binary tree node.
     * public class TreeNode {
     *     int val;
     *     TreeNode left;
     *     TreeNode right;
     *     TreeNode(int x) { val = x; }
     * }
     */
    class Solution {
        public boolean hasPathSum(TreeNode root, int sum) {
            if(root==null){
                return false;
            }else if(root.left==null&&root.right==null&&root.val==sum){
                return true;
            }
            return (hasPathSum(root.left,sum-root.val)||hasPathSum(root.right,sum-root.val));
        }
    }
    
  • 相关阅读:
    JS和Jquery获取this
    写SQL经验积累2
    转载学习
    java开发3个月总结
    学习规划
    Spring Boot详解
    webSocketDemo
    spring boot中 redis配置类(4.0)
    c语言操作字符串
    聊聊面试常问的HashMap中红黑树
  • 原文地址:https://www.cnblogs.com/xidian2014/p/8719543.html
Copyright © 2011-2022 走看看