226. Invert Binary Tree
problem description
Invert a binary tree.
Example:
Trivia: 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