LeetCode 226. Invert Binary Tree
题目Invert a binary tree.
Example:
12345678910111213141516Input: 4 / \ 2 7 / \ / \1 3 6 9Output: 4 / \ 7 2 / \ / \9
...