-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path226.翻转二叉树.js
39 lines (38 loc) · 870 Bytes
/
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
/*
* @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}
*/
var invertTree = function (root) {
if (!root) return root;
/* const left = root.left,
right = root.right;
root.left = invertTree(right);
root.right = invertTree(left);
return root; */
const stk = [root];
let cur;
while ((cur = stk.shift())) {
const left = cur.left,
right = cur.right;
cur.left = right;
cur.right = left;
left && stk.push(left);
right && stk.push(right);
}
return root;
};
// @lc code=end