IncredibleThings

导航

2016年5月24日 #

LeetCode-Invert Binary Tree

摘要: Invert a binary tree. 4 / \ 2 7 / \ / \ 1 3 6 9 to 4 / \ 7 2 / \ / \ 9 6 3 1 /** * Definition for a binary tree node. * public class TreeNode { * ... 阅读全文

posted @ 2016-05-24 23:21 IncredibleThings 阅读(141) 评论(0) 推荐(0) 编辑