226. Invert Binary Tree
problem description
Invert a binary tree.
Example:
Input:
4
/ \
2 7
/ \ / \
1 3 6 9
Output:
4
/ \
7 2
/ \ / \
9 6 3 1Trivia: This problem was inspired by this original tweet by Max Howell:
Google: 90% of our engineers use the software you wrote (Homebrew), but you can’t invert a binary tree on a whiteboard so f* off.
这有点意思
algorithm thought
这里使用递归和迭代都能做。思想就是先将左右子树翻转了,然后交换左右子树即可
code
algorithm analysis
遍历一遍树,时间复杂度O(n)
Last updated