653. Two Sum IV - Input is a BSTphp
給定一個二叉樹以及一個目標數字,判斷能不能經過二叉樹中任意兩個節點的值相加獲得。node
遍歷的時候,先把節點存起來,而且與每個值相加,判斷是否等於所需值。算法
這個算法很明顯效率比較低。數組
遍歷的時候,把自身做爲鍵存進數組內。用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