File tree 1 file changed +43
-0
lines changed
1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change
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
+ } ;
You can’t perform that action at this time.
0 commit comments