Two Sum IV - 입력이 BST임
7893 단어 javascriptleetcode
예 1:
입력: root = [5,3,6,2,4,null,7], k = 9
출력: 참
예 2:
입력: root = [5,3,6,2,4,null,7], k = 28
출력: 거짓
접근법 1: 설명적이고 이해하기 쉬움
/**
* Definition for a binary tree node.
* function TreeNode(val, left, right) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
*/
/**
* @param {TreeNode} root
* @param {number} k
* @return {boolean}
*/
var findTarget = function (root, k) {
// collecting all Element form BST
let allElements = [];
// inorder traversal becoz it will give sorted array for simplicity
function inOrderTraversal(root) {
if (root === null) {
return null;
}
inOrderTraversal(root.left);
allElements.push(root.val);
inOrderTraversal(root.right);
}
inOrderTraversal(root);
// creating map to keep track of all elements
let map = new Map();
allElements.forEach((element, index) => {
map.set(element, index);
});
// main loop to check if two values from array can give up the required sum
for (let i = 0; i < allElements.length; i++) {
let num = allElements[i];
let diff = k - num;
// checking if diff exist in map & also we have to make sure
// index of current element is not same as of matching element
if (map.has(diff) && map.get(diff) !== i) {
return true;
}
}
return false;
};
접근법 2: O(N)에서 수행하도록 위의 솔루션을 수정했습니다.
/**
* Definition for a binary tree node.
* function TreeNode(val, left, right) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
*/
/**
* @param {TreeNode} root
* @param {number} k
* @return {boolean}
*/
var findTarget = function(root, k) {
let map= new Map();
let bool=false;
const inorder =(root)=>{
if(root===null) return;
inorder(root.left);
if(map.has(k-root.val)){
bool=true;
}else{
map.set(root.val);
}
inorder(root.right);
}
inorder(root);
return bool;
};
Reference
이 문제에 관하여(Two Sum IV - 입력이 BST임), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/zeeshanali0704/two-sum-iv-input-is-a-bst-1o3d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)