leetcode 112 路径总和

    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);
    }
上一篇:【tmos】字段create_time如何动态的生成


下一篇:Android 窗口全屏