摘要: 1 class Solution { 2 TreeNode newRoot; 3 TreeNode prev; 4 public TreeNode upsideDownBinaryTree(TreeNode root) { 5 if(root == null) return root; 6 helper(root); 7 ... 阅读全文
posted @ 2018-12-09 12:57 jasoncool1 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 用curString去记录前面的String的结果 阅读全文
posted @ 2018-12-09 08:00 jasoncool1 阅读(157) 评论(0) 推荐(0) 编辑