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