Data Structure Binary Tree: Construct Full B

系统 1786 0

http://www.geeksforgeeks.org/full-and-complete-binary-tree-from-given-preorder-and-postorder-traversals/

      
         1
      
       #include <iostream>


      
         2
      
       #include <vector>


      
         3
      
       #include <algorithm>


      
         4
      
       #include <queue>


      
         5
      
       #include <stack>


      
         6
      
       #include <
      
        string
      
      >


      
         7
      
       #include <fstream>


      
         8
      
       #include <map>


      
         9
      
      
        using
      
      
        namespace
      
      
         std;


      
      
        10
      
      
        11
      
      
        struct
      
      
         node {


      
      
        12
      
      
        int
      
      
         data;


      
      
        13
      
      
        struct
      
       node *left, *
      
        right;


      
      
        14
      
           node() : data(
      
        0
      
      
        ), left(NULL), right(NULL) { }


      
      
        15
      
           node(
      
        int
      
      
         d) : data(d), left(NULL), right(NULL) { }


      
      
        16
      
      
        };


      
      
        17
      
      
        18
      
      
        void
      
       prints(node *
      
        root) {


      
      
        19
      
      
        if
      
       (!root) 
      
        return
      
      
        ;


      
      
        20
      
           prints(root->
      
        left);


      
      
        21
      
           cout << root->data << 
      
        "
      
      
        "
      
      
        ;


      
      
        22
      
           prints(root->
      
        right);


      
      
        23
      
      
        }


      
      
        24
      
      
        25
      
       node *_buildtree(
      
        int
      
       pre[], 
      
        int
      
       post[], 
      
        int
      
       &preindex, 
      
        int
      
       l, 
      
        int
      
       h, 
      
        int
      
      
         size) {


      
      
        26
      
      
        if
      
       (preindex >= size || l > h) 
      
        return
      
      
         NULL;


      
      
        27
      
           node *root = 
      
        new
      
       node(pre[preindex++
      
        ]);


      
      
        28
      
      
        if
      
       (l == h) 
      
        return
      
      
         root;


      
      
        29
      
      
        int
      
       i =
      
         l;


      
      
        30
      
      
        for
      
       (; i <= h; i++) 
      
        if
      
       (pre[preindex] == post[i]) 
      
        break
      
      
        ;


      
      
        31
      
      
        if
      
       (i <=
      
         h) {


      
      
        32
      
               root->left =
      
         _buildtree(pre, post, preindex, l, i, size);


      
      
        33
      
               root->right = _buildtree(pre, post, preindex, i+
      
        1
      
      
        , h, size);


      
      
        34
      
      
            }


      
      
        35
      
      
        return
      
      
         root;


      
      
        36
      
      
        }


      
      
        37
      
      
        38
      
       node *buildtree(
      
        int
      
       pre[], 
      
        int
      
       post[], 
      
        int
      
      
         size) {


      
      
        39
      
      
        int
      
       preindex = 
      
        0
      
      
        ;


      
      
        40
      
      
        return
      
       _buildtree(pre, post, preindex, 
      
        0
      
      , size-
      
        1
      
      
        , size);


      
      
        41
      
      
        }


      
      
        42
      
      
        43
      
      
        int
      
      
         main() {


      
      
        44
      
      
        int
      
       pre[
      
        9
      
      ] = {
      
        1
      
      , 
      
        2
      
      , 
      
        4
      
      , 
      
        8
      
      , 
      
        9
      
      , 
      
        5
      
      , 
      
        3
      
      , 
      
        6
      
      , 
      
        7
      
      
        };


      
      
        45
      
      
        int
      
       post[
      
        9
      
      ] = {
      
        8
      
      , 
      
        9
      
      , 
      
        4
      
      , 
      
        5
      
      , 
      
        2
      
      , 
      
        6
      
      , 
      
        7
      
      , 
      
        3
      
      , 
      
        1
      
      
        };


      
      
        46
      
           node *root = buildtree(pre, post, 
      
        9
      
      
        );


      
      
        47
      
      
            prints(root);


      
      
        48
      
      
        return
      
      
        0
      
      
        ;


      
      
        49
      
       }
    

 

Data Structure Binary Tree: Construct Full Binary Tree from given preorder and postorder traversals


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论