The Indian Engineer

Problem 226 Invert Binary Tree

Posted on 2 mins

Binary-Tree Tree Recursion

Problem Statement

Link - Problem 226

Question

Given the root of a binary tree, invert the tree and return its root.

Example 1

Input: root = [4,2,7,1,3,6,9]
Output: [4,7,2,9,6,3,1]

Input:

graph TD 4 --- 2 4 --- 7 2 --- 1 2 --- 3 7 --- 6 7 --- 9

Output :

graph TD 4 --- 7 4 --- 2 7 --- 9 7 --- 6 2 --- 3 2 --- 1

Example 2

Input: root = [2,1,3]
Output: [2,3,1]

Input :

graph TD 2 --- 1 2 --- 3

Output :

graph TD 2 --- 3 2 --- 1

Example 3

Input: root = []
Output: []

Constraints

- The number of nodes in the tree is in the range `[0, 100]`.
- `-100 <= Node.val <= 100`

Solution

/*
 * 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:
    void invert(TreeNode* root)
    {
        if(root)
        {
            swap(root->left,root->right);
            invert(root->left);
            invert(root->right);
        }
        else
            return;
    }
    TreeNode* invertTree(TreeNode* root) {
        invert(root);
        return root;
    }
};

Complexity Analysis

Explanation

1. Intuition

- We need to produce a mirror image of the binary tree.
- To do this we just need to swap the left and right subtrees recursively.

2. Implementation

- Define a helper function `invert` which takes a `TreeNode*` as input.
- If the root is not null, swap the left and right subtrees.
- Recursively call the `invert` function on the left and right subtrees.
- Return the root.