File tree 7 files changed +135
-15
lines changed
lcof2/剑指 Offer II 047. 二叉树剪枝
solution/0800-0899/0814.Binary Tree Pruning
7 files changed +135
-15
lines changed Original file line number Diff line number Diff line change 74
74
# self.right = right
75
75
class Solution :
76
76
def pruneTree (self , root : TreeNode) -> TreeNode:
77
- if not root:
78
- return None
77
+ if root is None :
78
+ return root
79
79
root.left = self .pruneTree(root.left)
80
80
root.right = self .pruneTree(root.right)
81
- if root.val == 0 and not root.left and not root.right:
81
+ if root.val == 0 and root.left is None and root.right is None :
82
82
return None
83
83
return root
84
84
```
@@ -168,6 +168,32 @@ public:
168
168
};
169
169
```
170
170
171
+ ### **JavaScript**
172
+
173
+ ```js
174
+ /**
175
+ * Definition for a binary tree node.
176
+ * function TreeNode(val, left, right) {
177
+ * this.val = (val===undefined ? 0 : val)
178
+ * this.left = (left===undefined ? null : left)
179
+ * this.right = (right===undefined ? null : right)
180
+ * }
181
+ */
182
+ /**
183
+ * @param {TreeNode} root
184
+ * @return {TreeNode}
185
+ */
186
+ var pruneTree = function (root) {
187
+ if (!root) return null;
188
+ root.left = pruneTree(root.left);
189
+ root.right = pruneTree(root.right);
190
+ if (root.val == 0 && !root.left && !root.right) {
191
+ return null;
192
+ }
193
+ return root;
194
+ };
195
+ ```
196
+
171
197
### ** ...**
172
198
173
199
```
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 {TreeNode }
12
+ */
13
+ var pruneTree = function ( root ) {
14
+ if ( ! root ) return null ;
15
+ root . left = pruneTree ( root . left ) ;
16
+ root . right = pruneTree ( root . right ) ;
17
+ if ( root . val == 0 && ! root . left && ! root . right ) {
18
+ return null ;
19
+ }
20
+ return root ;
21
+ } ;
Original file line number Diff line number Diff line change 6
6
# self.right = right
7
7
class Solution :
8
8
def pruneTree (self , root : TreeNode ) -> TreeNode :
9
- if not root :
10
- return None
9
+ if root is None :
10
+ return root
11
11
root .left = self .pruneTree (root .left )
12
12
root .right = self .pruneTree (root .right )
13
- if root .val == 0 and not root .left and not root .right :
13
+ if root .val == 0 and root .left is None and root .right is None :
14
14
return None
15
15
return root
Original file line number Diff line number Diff line change 64
64
# self.left = left
65
65
# self.right = right
66
66
class Solution :
67
- def pruneTree (self , root : TreeNode) -> TreeNode:
68
- if not root:
67
+ def pruneTree (self , root : Optional[ TreeNode] ) -> Optional[ TreeNode] :
68
+ if root is None :
69
69
return None
70
70
root.left = self .pruneTree(root.left)
71
71
root.right = self .pruneTree(root.right)
72
- if root.val == 0 and not root.left and not root.right:
72
+ if root.val == 0 and root.left is None and root.right is None :
73
73
return None
74
74
return root
75
75
```
@@ -159,6 +159,32 @@ public:
159
159
};
160
160
```
161
161
162
+ ### **JavaScript**
163
+
164
+ ```js
165
+ /**
166
+ * Definition for a binary tree node.
167
+ * function TreeNode(val, left, right) {
168
+ * this.val = (val===undefined ? 0 : val)
169
+ * this.left = (left===undefined ? null : left)
170
+ * this.right = (right===undefined ? null : right)
171
+ * }
172
+ */
173
+ /**
174
+ * @param {TreeNode} root
175
+ * @return {TreeNode}
176
+ */
177
+ var pruneTree = function (root) {
178
+ if (!root) return null;
179
+ root.left = pruneTree(root.left);
180
+ root.right = pruneTree(root.right);
181
+ if (root.val == 0 && !root.left && !root.right) {
182
+ return null;
183
+ }
184
+ return root;
185
+ };
186
+ ```
187
+
162
188
### ** ...**
163
189
164
190
```
Original file line number Diff line number Diff line change @@ -55,12 +55,12 @@ The diagram on the right represents the answer.
55
55
# self.left = left
56
56
# self.right = right
57
57
class Solution :
58
- def pruneTree (self , root : TreeNode) -> TreeNode:
59
- if not root:
58
+ def pruneTree (self , root : Optional[ TreeNode] ) -> Optional[ TreeNode] :
59
+ if root is None :
60
60
return None
61
61
root.left = self .pruneTree(root.left)
62
62
root.right = self .pruneTree(root.right)
63
- if root.val == 0 and not root.left and not root.right:
63
+ if root.val == 0 and root.left is None and root.right is None :
64
64
return None
65
65
return root
66
66
```
@@ -148,6 +148,32 @@ public:
148
148
};
149
149
```
150
150
151
+ ### **JavaScript**
152
+
153
+ ```js
154
+ /**
155
+ * Definition for a binary tree node.
156
+ * function TreeNode(val, left, right) {
157
+ * this.val = (val===undefined ? 0 : val)
158
+ * this.left = (left===undefined ? null : left)
159
+ * this.right = (right===undefined ? null : right)
160
+ * }
161
+ */
162
+ /**
163
+ * @param {TreeNode} root
164
+ * @return {TreeNode}
165
+ */
166
+ var pruneTree = function (root) {
167
+ if (!root) return null;
168
+ root.left = pruneTree(root.left);
169
+ root.right = pruneTree(root.right);
170
+ if (root.val == 0 && !root.left && !root.right) {
171
+ return null;
172
+ }
173
+ return root;
174
+ };
175
+ ```
176
+
151
177
### ** ...**
152
178
153
179
```
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 {TreeNode }
12
+ */
13
+ var pruneTree = function ( root ) {
14
+ if ( ! root ) return null ;
15
+ root . left = pruneTree ( root . left ) ;
16
+ root . right = pruneTree ( root . right ) ;
17
+ if ( root . val == 0 && ! root . left && ! root . right ) {
18
+ return null ;
19
+ }
20
+ return root ;
21
+ } ;
Original file line number Diff line number Diff line change 5
5
# self.left = left
6
6
# self.right = right
7
7
class Solution :
8
- def pruneTree (self , root : TreeNode ) -> TreeNode :
9
- if not root :
8
+ def pruneTree (self , root : Optional [ TreeNode ] ) -> Optional [ TreeNode ] :
9
+ if root is None :
10
10
return None
11
11
root .left = self .pruneTree (root .left )
12
12
root .right = self .pruneTree (root .right )
13
- if root .val == 0 and not root .left and not root .right :
13
+ if root .val == 0 and root .left is None and root .right is None :
14
14
return None
15
15
return root
You can’t perform that action at this time.
0 commit comments