LeetCode p105 Construct Binary Tree from Preorder and Inorder Traversal 题解
1.题目:
Given preorder and inorder traversal of a tree, construct the binary tree.
题意:
输入一二叉树的前续遍历,中序遍历,返回这个二叉树。
2.解题思路:
前续的第一个为头,切分中序,递归。
3.代码
1 |
|
很高兴遇见你~
Given preorder and inorder traversal of a tree, construct the binary tree.
题意:
输入一二叉树的前续遍历,中序遍历,返回这个二叉树。
前续的第一个为头,切分中序,递归。
1 |
|