Skip to content

Commit 35bf28f

Browse files
authored
feat: add javascript solution to lc problem: No.0111.Minimum Depth of Binary Tree (doocs#406)
1 parent 324e8d8 commit 35bf28f

File tree

3 files changed

+64
-0
lines changed

3 files changed

+64
-0
lines changed

solution/0100-0199/0111.Minimum Depth of Binary Tree/README.md

+23
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,29 @@ class Solution {
103103
}
104104
```
105105

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+
106129
### **C++**
107130

108131
```cpp

solution/0100-0199/0111.Minimum Depth of Binary Tree/README_EN.md

+23
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,29 @@ class Solution {
9191
}
9292
```
9393

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+
94117
### **C++**
95118

96119
```cpp
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
};

0 commit comments

Comments
 (0)