-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path226.翻转二叉树.js
69 lines (64 loc) · 1.3 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
* @lc app=leetcode.cn id=226 lang=javascript
*
* [226] 翻转二叉树
*
* https://leetcode-cn.com/problems/invert-binary-tree/description/
*
* algorithms
* Easy (78.81%)
* Likes: 1138
* Dislikes: 0
* Total Accepted: 359K
* Total Submissions: 455.3K
* Testcase Example: '[4,2,7,1,3,6,9]'
*
* 翻转一棵二叉树。
*
* 示例:
*
* 输入:
*
* 4
* / \
* 2 7
* / \ / \
* 1 3 6 9
*
* 输出:
*
* 4
* / \
* 7 2
* / \ / \
* 9 6 3 1
*
* 备注:
* 这个问题是受到 Max Howell 的 原问题 启发的 :
*
* 谷歌:我们90%的工程师使用您编写的软件(Homebrew),但是您却无法在面试时在白板上写出翻转二叉树这道题,这太糟糕了。
*
*/
// @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}
*/
var invertTree = function(root) {
if(!root) return null
const temp = root.left
root.left = root.right
root.right = temp
invertTree(root.left)
invertTree(root.right)
return root
};
// @lc code=end