• leetcode-Construct Binary Tree from Inorder and Postorder Traversal


    Given inorder and postorder traversal of a tree, construct the binary tree.

    Note:

    You may assume that duplicates do not exist in the tree.

    /**
     * Definition for binary tree
     * struct TreeNode {
     *     int val;
     *     TreeNode *left;
     *     TreeNode *right;
     *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
     * };
     */
    class Solution {
    public:
        TreeNode *build(vector<int>&in,int instart,int inend,vector<int>&post,int poststart,int postend)
        {
            if(postend<poststart||inend<instart||(postend-poststart)!=(inend-instart))
                return NULL;
            TreeNode *head = new TreeNode(post[postend]);
            int rootpos;
            for(int i=0;i<=inend-instart;i++)
                if(in[i+instart]==post[postend])
                {
                    rootpos = i;
                    break;
                }
                
            head->left  = build(in,instart,instart+rootpos-1,post,poststart,poststart+rootpos-1);
            head->right = build(in,instart+rootpos+1,inend,post,poststart+rootpos,postend-1);
            return head;
        }
        TreeNode *buildTree(vector<int> &inorder, vector<int> &postorder) 
        {
            int postsize = postorder.size();
            int insize   = inorder.size();
            TreeNode *head = build(inorder,0,insize-1,postorder,0,postsize-1);
            return head;
        }
    };


    每天早上叫醒你的不是闹钟,而是心中的梦~
  • 相关阅读:
    FastStone Capture(FSCapture) 注册码
    Qt下开发及调用带界面的DLL
    Gin生成证书开启HTTPS
    Gin+Vue3开启nginx gzip但是不生效。
    GIn+Docker+docer-compose
    Go字符串切片
    Vue使用AG Grid嵌套element-plus
    GIN转换UTC时间
    GORM对实现datetime和date类型时间
    (二)PaddleOCR 编译 ocr_system.dll
  • 原文地址:https://www.cnblogs.com/vintion/p/4116858.html
Copyright © 2020-2023  润新知