File tree 1 file changed +11
-9
lines changed
1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change 15
15
* @return {TreeNode }
16
16
*/
17
17
var deleteNode = function ( root , key ) {
18
- if ( ! root ) return root ;
18
+ if ( ! root ) return root ;
19
19
20
- if ( key === root . val ) {
21
- if ( ! root . left ) return root . right ;
22
- if ( ! root . right ) return root . left ;
20
+ if ( key === root . val ) {
21
+ if ( ! root . left ) return root . right ;
22
+ if ( ! root . right ) return root . left ;
23
23
24
24
// find the smallest val in right bst
25
25
let curr = root . right ;
26
- while ( curr . left ) {
26
+ while ( curr . left ) {
27
27
curr = curr . left ;
28
28
}
29
29
// change the curr value
30
30
root . val = curr . val ;
31
31
32
32
root . right = deleteNode ( root . right , root . val ) ;
33
- } else if ( key < root . val ) {
33
+
34
+ return root ;
35
+ }
36
+ if ( key < root . val ) {
34
37
root . left = deleteNode ( root . left , key ) ;
35
- } else {
36
- root . right = deleteNode ( root . right , key ) ;
38
+ return root ;
37
39
}
38
-
40
+ root . right = deleteNode ( root . right , key ) ;
39
41
return root ;
40
42
} ;
You can’t perform that action at this time.
0 commit comments