剑指offer 66道:重建二叉树

剑指offer 66道-python+JavaScript

  • 重建二叉树
    • github
    • 题目代码(python)
    • github
    • 题目代码(JavaScript)

重建二叉树

时间限制:1秒 空间限制:32768K 热度指数:565388

题目描述
输入某二叉树的前序遍历和中序遍历的结果,请重建出该二叉树。假设输入的前序遍历和中序遍历的结果中都不含重复的数字。例如输入前序遍历序列{1,2,4,7,3,5,6,8}和中序遍历序列{4,7,2,1,5,3,8,6},则重建二叉树并返回。

github

python代码链接: https://github.com/seattlegirl/jianzhioffer/blob/master/rebuild-binary-tree.py.

题目代码(python)

# -*- coding:utf-8 -*-
class TreeNode:
    def __init__(self, x):
        self.val = x
        self.left = None
        self.right = None
class Solution:
    # 返回构造的TreeNode根节点
    def reConstructBinaryTree(self, pre, tin):
        # write code here
        if len(pre)==0 or len(tin)==0:
            return None
        elif len(pre)==len(tin)==1:
            return TreeNode(pre[0])
        else:
            root_data=TreeNode(pre[0])
            //构建左子树
            root_data.left=self.reConstructBinaryTree(pre[1:tin.index(pre[0])+1],tin[:tin.index(pre[0])])
            //构建右子树
            root_data.right=self.reConstructBinaryTree(pre[tin.index(pre[0]) + 1: ], tin[tin.index(pre[0]) + 1: ])
        return root_data

github

JavaScript代码链接: https://github.com/seattlegirl/jianzhioffer/blob/master/rebuild-binary-tree.js.

题目代码(JavaScript)

function TreeNode(x) {
    this.val = x;
    this.left = null;
    this.right = null;
} 
function reConstructBinaryTree(pre, vin)
{
    // write code here
    if(pre.length===0 || vin.length===0){
        return null;
    }
    var node=new TreeNode(pre[0]);
    node.left=reConstructBinaryTree(pre.slice(1,vin.indexOf(pre[0])+1),vin.slice(0,vin.indexOf(pre[0])));
    node.right=reConstructBinaryTree(pre.slice(vin.indexOf(pre[0])+1),vin.slice(index+1));
    return node;
}

你可能感兴趣的:(剑指offer 66道:重建二叉树)