Invert a Binary Tree
In an inverted binary tree, each node in the original is swapped with the corresponding node on the other side.
You can also think of it as rotating the tree on an axis right down the middle.
Example:

Here’s the same tree, inverted.

Like most tree problems, it’s best handled recursively. You just
- Swap
- Recurse to the left child
- Recurse to the right child
1def invertBinaryTree(tree):2 # This is why I use Python for stuff like this3 tree.left,tree.right = tree.right,tree.left4
5 if (tree.left is not None):6 invertBinaryTree(tree.left)7 if (tree.right is not None):8 invertBinaryTree(tree.right)9
10class BinaryTree:11 def __init__(self, value):12 self.value = value13 self.left = None14 self.right = NoneIt’s surprisingly simple.