摘要: Given inorder and postorder traversal of a tree, construct the binary tree.Note:You may assume that duplicates do not exist in the tree.---similar to 105/** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = ... 阅读全文
posted @ 2013-10-03 09:33 LEDYC 阅读(167) 评论(0) 推荐(0)