-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path226.翻转二叉树.js
52 lines (46 loc) · 1.01 KB
/
226.翻转二叉树.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* @lc app=leetcode.cn id=226 lang=javascript
*
* [226] 翻转二叉树
*/
// @lc code=start
/**
* Definition for a binary tree node.
* function TreeNode(val, left, right) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
*/
/**
* @param {TreeNode} root
* @return {TreeNode}
*/
// solution1: 遍历的思维
// var invertTree = function(root) {
// traverse(root)
// return root
// function traverse(root) {
// if (!root) {
// return null
// }
// var temp = root.left
// root.left = root.right
// root.right = temp
// traverse(root.left)
// traverse(root.right)
// }
// }
// solution2: 分解的思维
var invertTree = function(root) {
if (!root) {
return null
}
var tempLeft = invertTree(root.left)
var tempRight = invertTree(root.right)
root.left = tempRight
root.right = tempLeft
return root
}
// @lc code=end
module.exports = { invertTree }