623. Add One Row to Tree

623. Add One Row to Tree

Description

Given the root of a binary tree and two integers val and depth, add a row of nodes with value val at the given depth depth.

Note that the root node is at depth 1.

The adding rule is:

  • Given the integer depth, for each not null tree node cur at the depth depth - 1, create two tree nodes with value val as cur‘s left subtree root and right subtree root.
  • cur‘s original left subtree should be the left subtree of the new left subtree root.
  • cur‘s original right subtree should be the right subtree of the new right subtree root.
  • If depth == 1 that means there is no depth depth - 1 at all, then create a tree node with value val as the new root of the whole original tree, and the original tree is the new root’s left subtree.

Example 1:

1
2
Input: root = [4,2,6,3,1,5], val = 1, depth = 2
Output: [4,1,1,2,null,null,6,3,1,5]

Example 2:

1
2
Input: root = [4,2,null,3,1], val = 1, depth = 3
Output: [4,2,null,1,1,3,null,null,1]

Constraints:

  • The number of nodes in the tree is in the range [1, 10^4].
  • The depth of the tree is in the range [1, 10^4].
  • -100 <= Node.val <= 100
  • -10^5 <= val <= 10^5
  • 1 <= depth <= the depth of tree + 1

Hints/Notes

  • N/A

Solution

Language: C++

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
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
int curDepth = 1;

TreeNode* addOneRow(TreeNode* root, int val, int depth) {
if (depth == 1) {
TreeNode* newHead = new TreeNode(val);
newHead->left = root;
return newHead;
}
return traverse(root, val, depth);
}

TreeNode* traverse(TreeNode* root, int val, int depth) {
if (!root) {
return root;
}
curDepth++;
if (curDepth == depth) {
TreeNode* left = new TreeNode(val);
TreeNode* right = new TreeNode(val);
TreeNode* prevLeft= root->left;
TreeNode* prevRight = root->right;
root->left = left;
root->right = right;
left->left = prevLeft;
right->right = prevRight;
}
traverse(root->left, val, depth);
traverse(root->right, val, depth);
curDepth--;
return root;
}
};