标签:
题目链接:https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/
题目:
Given preorder and inorder traversal of a tree, construct the binary tree.
Note:
You may assume that duplicates do not exist in the tree.
思路:
递归。
算法:
【Leetcode】Construct Binary Tree from Preorder and Inorder Traversal
标签:
原文地址:http://blog.csdn.net/yeqiuzs/article/details/51472685