5
5
* @return {boolean }
6
6
*/
7
7
var isSubtree = function ( root , subRoot ) {
8
- if ( ! root ) return false ;
8
+ if ( ! root ) return false
9
9
10
- if ( isSame ( root , subRoot ) ) return true ;
10
+ if ( isSame ( root , subRoot ) ) return true
11
11
12
- const hasLeftTree = isSubtree ( root . left , subRoot ) ;
13
- const hasRightTree = isSubtree ( root . right , subRoot ) ;
12
+ const hasLeftTree = isSubtree ( root . left , subRoot )
13
+ const hasRightTree = isSubtree ( root . right , subRoot )
14
14
15
- return hasLeftTree || hasRightTree ;
15
+ return hasLeftTree || hasRightTree
16
16
} ;
17
17
18
18
const isSame = ( root , subRoot ) => {
19
- const hasReachedEnd = ! ( root && subRoot ) ;
20
- if ( hasReachedEnd ) return root === subRoot ;
19
+ const hasReachedEnd = ! ( root && subRoot )
20
+ if ( hasReachedEnd ) return root === subRoot
21
21
22
22
const isMismatch = root . val !== subRoot . val ;
23
- if ( isMismatch ) return false ;
23
+ if ( isMismatch ) return false
24
24
25
- const isLeftSame = isSame ( root . left , subRoot . left ) ;
26
- const isRightSame = isSame ( root . right , subRoot . right ) ;
25
+ const isLeftSame = isSame ( root . left , subRoot . left )
26
+ const isRightSame = isSame ( root . right , subRoot . right )
27
27
28
- return isLeftSame && isRightSame ;
29
- } ;
28
+ return isLeftSame && isRightSame
29
+ }
30
30
31
31
const hash = ( val ) =>
32
- require ( 'crypto' ) . createHash ( 'md5' ) . update ( val ) . digest ( 'hex' ) ;
32
+ require ( 'crypto' ) . createHash ( 'md5' ) . update ( val ) . digest ( 'hex' )
33
33
34
34
const merkle = ( root ) => {
35
- if ( ! root ) return '#' ;
35
+ if ( ! root ) return '#'
36
36
37
- const { left, val, right } = root ;
37
+ const { left, val, right } = root
38
38
39
- const leftMerkle = merkle ( left ) ;
40
- const rightMerkle = merkle ( right ) ;
39
+ const leftMerkle = merkle ( left )
40
+ const rightMerkle = merkle ( right )
41
41
42
- const merkleVal = [ leftMerkle , val , rightMerkle ] . join ( '' ) ;
43
- const merkleHash = hash ( merkleVal ) ;
42
+ const merkleVal = [ leftMerkle , val , rightMerkle ] . join ( '' )
43
+ const merkleHash = hash ( merkleVal )
44
44
45
- root . merkle = merkleHash ;
45
+ root . merkle = merkleHash
46
46
47
- return root . merkle ;
48
- } ;
47
+ return root . merkle
48
+ }
49
49
50
50
const search = ( root , subRoot ) => {
51
- if ( ! root ) return false ;
51
+ if ( ! root ) return false
52
52
53
- const hasSamePath = root . merkle === subRoot . merkle ;
54
- if ( hasSamePath ) return true ;
53
+ const hasSamePath = root . merkle === subRoot . merkle
54
+ if ( hasSamePath ) return true
55
55
56
- const left = search ( root . left , subRoot ) ;
57
- const right = search ( root . right , subRoot ) ;
56
+ const left = search ( root . left , subRoot )
57
+ const right = search ( root . right , subRoot )
58
58
59
- return left || right ;
60
- } ;
59
+ return left || right
60
+ }
61
61
62
62
var isSubtree = function ( root , subRoot ) {
63
- [ root , subRoot ] . forEach ( merkle ) ;
63
+ [ root , subRoot ] . forEach ( merkle )
64
64
65
- return search ( root , subRoot ) ;
66
- } ;
65
+ return search ( root , subRoot )
66
+ }
67
67
68
68
const hashify = ( root , hash , postOrderKey ) => {
69
- if ( ! root ) return '#' ;
69
+ if ( ! root ) return '#'
70
70
71
- const left = hashify ( root . left , hash , postOrderKey ) ;
72
- const right = hashify ( root . right , hash , postOrderKey ) ;
71
+ const left = hashify ( root . left , hash , postOrderKey )
72
+ const right = hashify ( root . right , hash , postOrderKey )
73
73
74
- const key = [ left , root . val , right ] . join ( '' ) ;
74
+ const key = [ left , root . val , right ] . join ( '' )
75
75
76
76
if ( ! hash . has ( key ) ) {
77
- hash . set ( key , postOrderKey [ 0 ] ) ;
78
- postOrderKey [ 0 ] ++ ;
77
+ hash . set ( key , postOrderKey [ 0 ] )
78
+ postOrderKey [ 0 ] ++
79
79
}
80
80
81
- return hash . get ( key ) ;
82
- } ;
81
+ return hash . get ( key )
82
+ }
83
83
84
84
var isSubtree = function ( root , subRoot , hash = new Map ( ) , postOrderKey = [ 0 ] ) {
85
- hashify ( root , hash , postOrderKey ) ;
85
+ hashify ( root , hash , postOrderKey )
86
86
87
87
const hashKey = [
88
88
hashify ( subRoot . left , hash , postOrderKey ) ,
89
89
subRoot . val ,
90
90
hashify ( subRoot . right , hash , postOrderKey ) ,
91
- ] . join ( '' ) ;
91
+ ] . join ( '' )
92
92
93
- return hash . has ( hashKey ) ;
94
- } ;
93
+ return hash . has ( hashKey )
94
+ }
95
95
96
96
/**
97
97
* Definition for a binary tree node.
@@ -109,30 +109,30 @@ var isSubtree = function (root, subRoot, hash = new Map(), postOrderKey = [0]) {
109
109
*/
110
110
var isSubtree = function ( root , subRoot ) {
111
111
if ( ! subRoot ) {
112
- return true ;
112
+ return true
113
113
} else if ( ! root ) {
114
- return false ;
114
+ return false
115
115
} else if ( isSameTree ( root , subRoot ) ) {
116
- return true ;
116
+ return true
117
117
}
118
118
119
- const leftResult = isSubtree ( root . left , subRoot ) ;
120
- const rightResult = isSubtree ( root . right , subRoot ) ;
119
+ const leftResult = isSubtree ( root . left , subRoot )
120
+ const rightResult = isSubtree ( root . right , subRoot )
121
121
122
- return leftResult || rightResult ;
123
- } ;
122
+ return leftResult || rightResult
123
+ }
124
124
125
125
function isSameTree ( root , subRoot ) {
126
126
if ( ! root && ! subRoot ) {
127
- return true ;
127
+ return true
128
128
} else if ( ! root || ! subRoot ) {
129
- return false ;
129
+ return false
130
130
} else if ( root . val !== subRoot . val ) {
131
- return false ;
131
+ return false
132
132
}
133
133
134
- const leftRes = isSameTree ( root . left , subRoot . left ) ;
135
- const rightRes = isSameTree ( root . right , subRoot . right ) ;
134
+ const leftRes = isSameTree ( root . left , subRoot . left )
135
+ const rightRes = isSameTree ( root . right , subRoot . right )
136
136
137
- return leftRes && rightRes ;
137
+ return leftRes && rightRes
138
138
}
0 commit comments