leetcode105 前序中序遍历序列构造二叉树

leetcode105 前序中序遍历序列构造二叉树_第1张图片

根据一棵树的前序遍历与中序遍历构造二叉树。

注意:
你可以假设树中没有重复的元素。

例如,给出

前序遍历 preorder = [3,9,20,15,7]
中序遍历 inorder = [9,3,15,20,7]
返回如下的二叉树:

    3
   / \
  9  20
    /  \
   15   7

思路:

1、前序序列第一个是根

2、根据根在中序序列中找到

3、对左右子树做同样的操作(操作返回的结果就是根的左右孩子)

 

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public TreeNode buildTree(int[] preorder, int[] inorder) {
        if(preorder.length==0)return null;     
        TreeNode root = new TreeNode(preorder[0]);
        int num=0;
        for(int i =0; i

 

你可能感兴趣的:(leetcode)