-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy path0156-binary-tree-upside-down.js
More file actions
39 lines (36 loc) · 1.14 KB
/
0156-binary-tree-upside-down.js
File metadata and controls
39 lines (36 loc) · 1.14 KB
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
/**
* 156. Binary Tree Upside Down
* https://leetcode.com/problems/binary-tree-upside-down/
* Difficulty: Medium
*
* Given the root of a binary tree, turn the tree upside down and return the new root.
*
* You can turn a binary tree upside down with the following steps:
* - The original left child becomes the new root.
* - The original root becomes the new right child.
* - The original right child becomes the new left child.
*
* The mentioned steps are done level by level. It is guaranteed that every right node has
* a sibling (a left node with the same parent) and has no children.
*/
/**
* 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 upsideDownBinaryTree = function(root) {
if (!root || !root.left) return root;
const newRoot = upsideDownBinaryTree(root.left);
root.left.left = root.right;
root.left.right = root;
root.left = null;
root.right = null;
return newRoot;
};