File tree 3 files changed +64
-0
lines changed
solution/0100-0199/0111.Minimum Depth of Binary Tree
3 files changed +64
-0
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,29 @@ class Solution {
103
103
}
104
104
```
105
105
106
+ ### ** JavaScript**
107
+
108
+ ``` js
109
+ /**
110
+ * Definition for a binary tree node.
111
+ * function TreeNode(val, left, right) {
112
+ * this.val = (val===undefined ? 0 : val)
113
+ * this.left = (left===undefined ? null : left)
114
+ * this.right = (right===undefined ? null : right)
115
+ * }
116
+ */
117
+ /**
118
+ * @param {TreeNode} root
119
+ * @return {number}
120
+ */
121
+ var minDepth = function (root ) {
122
+ if (root == null ) return 0 ;
123
+ if (root .left == null ) return minDepth (root .right ) + 1 ;
124
+ if (root .right == null ) return minDepth (root .left ) + 1 ;
125
+ return Math .min (minDepth (root .left ), minDepth (root .right )) + 1 ;
126
+ };
127
+ ```
128
+
106
129
### ** C++**
107
130
108
131
``` cpp
Original file line number Diff line number Diff line change @@ -91,6 +91,29 @@ class Solution {
91
91
}
92
92
```
93
93
94
+ ### ** JavaScript**
95
+
96
+ ``` js
97
+ /**
98
+ * Definition for a binary tree node.
99
+ * function TreeNode(val, left, right) {
100
+ * this.val = (val===undefined ? 0 : val)
101
+ * this.left = (left===undefined ? null : left)
102
+ * this.right = (right===undefined ? null : right)
103
+ * }
104
+ */
105
+ /**
106
+ * @param {TreeNode} root
107
+ * @return {number}
108
+ */
109
+ var minDepth = function (root ) {
110
+ if (root == null ) return 0 ;
111
+ if (root .left == null ) return minDepth (root .right ) + 1 ;
112
+ if (root .right == null ) return minDepth (root .left ) + 1 ;
113
+ return Math .min (minDepth (root .left ), minDepth (root .right )) + 1 ;
114
+ };
115
+ ```
116
+
94
117
### ** C++**
95
118
96
119
``` cpp
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Definition for a binary tree node.
3
+ * function TreeNode(val, left, right) {
4
+ * this.val = (val===undefined ? 0 : val)
5
+ * this.left = (left===undefined ? null : left)
6
+ * this.right = (right===undefined ? null : right)
7
+ * }
8
+ */
9
+ /**
10
+ * @param {TreeNode } root
11
+ * @return {number }
12
+ */
13
+ var minDepth = function ( root ) {
14
+ if ( root == null ) return 0 ;
15
+ if ( root . left == null ) return minDepth ( root . right ) + 1 ;
16
+ if ( root . right == null ) return minDepth ( root . left ) + 1 ;
17
+ return Math . min ( minDepth ( root . left ) , minDepth ( root . right ) ) + 1 ;
18
+ } ;
You can’t perform that action at this time.
0 commit comments