Skip to content

Commit 18015ca

Browse files
authored
Create 1361-validate-binary-tree-nodes.js
1 parent cff997a commit 18015ca

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/**
2+
* DFS
3+
* Time O(n) | Space O(n)
4+
* https://leetcode.com/problems/validate-binary-tree-nodes/
5+
*
6+
* @param {number} n
7+
* @param {number[]} leftChild
8+
* @param {number[]} rightChild
9+
* @return {boolean}
10+
*/
11+
var validateBinaryTreeNodes = function(n, leftChild, rightChild) {
12+
13+
const visited = new Set();
14+
15+
const findRoot = () => {
16+
17+
const childrenSet = new Set();
18+
for(let i = 0; i < n; i++) {
19+
childrenSet.add(i);
20+
}
21+
22+
for(let i = 0; i < n; i++) {
23+
childrenSet.delete(leftChild[i]);
24+
childrenSet.delete(rightChild[i]);
25+
}
26+
27+
return [...childrenSet][0];
28+
}
29+
30+
const dfs = (i) => {
31+
32+
if(i === -1) return true;
33+
if(visited.has(i)) return false;
34+
35+
const left = leftChild[i];
36+
const right = rightChild[i];
37+
visited.add(i);
38+
return dfs(left) && dfs(right);
39+
}
40+
41+
const root = findRoot();
42+
return dfs(root) && visited.size === n;
43+
};

0 commit comments

Comments
 (0)