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