Given inorder and postorder traversal of a tree, construct the binary tree.
Note:
You may assume that duplicates do not exist in the tree.
已知树的中序和后序遍历,构建这棵树,跟105思路一样,比较简单
1 | /** |
Given inorder and postorder traversal of a tree, construct the binary tree.
Note:
You may assume that duplicates do not exist in the tree.
已知树的中序和后序遍历,构建这棵树,跟105思路一样,比较简单
1 | /** |