Leetcode PHP題解--D89 653. Two Sum IV - Input is a BST

D89 653. Two Sum IV - Input is a BST

題目連接

653. Two Sum IV - Input is a BSTphp

題目分析

給定一個二叉樹以及一個目標數字,判斷能不能經過二叉樹中任意兩個節點的值相加獲得。node

思路

思路1

遍歷的時候,先把節點存起來,而且與每個值相加,判斷是否等於所需值。算法

這個算法很明顯效率比較低。數組

思路2

遍歷的時候,把自身做爲鍵存進數組內。用isset函數判斷與所求數字之差是否在數組內。存在既返回。不然,遍歷子節點。函數

最終代碼

<?php
/** * Definition for a binary tree node. * class TreeNode { * public $val = null; * public $left = null; * public $right = null; * function __construct($value) { $this->val = $value; } * } */
class Solution {
    protected $has = [];
    protected $hasResult = false;
    /** * @param TreeNode $root * @param Integer $k * @return Boolean */
    function findTarget($root, $k) {
        if(is_null($root)){
            return;
        }
        if(isset($this->has[$k-($root->val)])){
            $this->hasResult = true;
            return $this->hasResult;
        }
        else{
            $this->has[$root->val] = true;
            if(!$this->findTarget($root->left, $k)){
                $this->findTarget($root->right, $k);
            }
        }
        return $this->hasResult;
    }
}
複製代碼

若以爲本文章對你有用,歡迎用愛發電資助。this

相關文章
相關標籤/搜索