LeetCode之226. Invert Binary Tree

Invert a binary tree. Example: Input: 4 / \ 2 7 / \ / \ 1 3 6 9 Output: 4 / \ 7 2 / \ / \ 9 6 3 1 自己的代碼:(遞歸) Runtime: 0 ms, faster than 100.00% of Java on
相關文章
相關標籤/搜索