两数之和 IV - 输入 BST——Leetcode

两数之和 IV - 输入 BST——Leetcode,第1张

 

代码实现:

public class FindTarget {


    public boolean findTarget(TreeNode root, int k) {
        if (root == null) return false;
        Map hashMap = new HashMap<>();
        return findTarget(root, k, hashMap);
    }


    public boolean findTarget(TreeNode root, int k, Map hashMap) {
        if (root == null) return false;
        if (hashMap.containsKey(root.val)){
            return true;
        }else {
            hashMap.put(k - root.val,true);
        }

        return findTarget(root.left, k, hashMap) || findTarget(root.right, k, hashMap);
    }

}

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/734633.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-27
下一篇 2022-04-27

发表评论

登录后才能评论

评论列表(0条)

保存