LeetCode 112. 路径总和 Java

Posted 鱼の家

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 112. 路径总和 Java相关的知识,希望对你有一定的参考价值。

1.层序遍历,一个队列存放节点,一个队列存放到当前节点的值。

2.递归

/**
 * 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;
        }
        if(root.left == null && root.right == null){
            return sum == root.val;
        }
        return hasPathSum(root.left,sum-root.val) || hasPathSum(root.right,sum-root.val);
    }
}

以上是关于LeetCode 112. 路径总和 Java的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode Java刷题笔记—112. 路径总和

LeetCode-112. 路径总和(java)

leetcode-----112. 路径总和

LeetCode112路径总和

LeetCode第112题—路径总和—Python实现

LeetCode-112-路径总和