2#include3#include4#include5#include6#include7#include8usingnamespacestd;910structnode{11int" />

日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

Data Structure Binary Tree: Check if a given

系統 2149 0

http://www.geeksforgeeks.org/check-if-a-given-binary-tree-is-sumtree/

      
         1
      
       #include <iostream>


      
         2
      
       #include <vector>


      
         3
      
       #include <algorithm>


      
         4
      
       #include <queue>


      
         5
      
       #include <stack>


      
         6
      
       #include <
      
        string
      
      >


      
         7
      
       #include <fstream>


      
         8
      
      
        using
      
      
        namespace
      
      
         std;


      
      
         9
      
      
        10
      
      
        struct
      
      
         node {


      
      
        11
      
      
        int
      
      
         data;


      
      
        12
      
      
        struct
      
       node *left, *
      
        right;


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


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


      
      
        15
      
      
        };


      
      
        16
      
      
        17
      
      
        bool
      
       isleaf(node *
      
        root) {


      
      
        18
      
      
        return
      
       !root->left && !root->
      
        right;


      
      
        19
      
      
        }


      
      
        20
      
      
        21
      
      
        bool
      
       issumtree(node *
      
        root) {


      
      
        22
      
      
        if
      
       (!root || isleaf(root)) 
      
        return
      
      
        true
      
      
        ;


      
      
        23
      
      
        int
      
       l = 
      
        0
      
      
        ;


      
      
        24
      
      
        int
      
       r = 
      
        0
      
      
        ;


      
      
        25
      
      
        if
      
       (root->left == NULL) l = 
      
        0
      
      
        ;


      
      
        26
      
      
        else
      
      
        if
      
       (isleaf(root->left)) l = root->left->
      
        data;


      
      
        27
      
      
        else
      
       l = 
      
        2
      
       * root->left->
      
        data;


      
      
        28
      
      
        if
      
       (root->right == NULL) r = 
      
        0
      
      
        ;


      
      
        29
      
      
        else
      
      
        if
      
       (isleaf(root->right)) r = root->right->
      
        data;


      
      
        30
      
      
        else
      
       r = 
      
        2
      
       * root->right->
      
        data;


      
      
        31
      
      
        return
      
       root->data == l + r && issumtree(root->left) && issumtree(root->
      
        right);


      
      
        32
      
      
        }


      
      
        33
      
      
        34
      
      
        int
      
      
         main() {


      
      
        35
      
           node *root = 
      
        new
      
       node(
      
        26
      
      
        );


      
      
        36
      
           root->left = 
      
        new
      
       node(
      
        10
      
      
        );


      
      
        37
      
           root->right = 
      
        new
      
       node(
      
        3
      
      
        );


      
      
        38
      
           root->left->left = 
      
        new
      
       node(
      
        4
      
      
        );


      
      
        39
      
           root->left->right = 
      
        new
      
       node(
      
        6
      
      
        );


      
      
        40
      
           root->right->right = 
      
        new
      
       node(
      
        3
      
      
        );


      
      
        41
      
      
        if
      
       (issumtree(root)) cout << 
      
        "
      
      
        yes
      
      
        "
      
       <<
      
         endl;


      
      
        42
      
      
        else
      
       cout << 
      
        "
      
      
        NO
      
      
        "
      
       <<
      
         endl;


      
      
        43
      
      
        return
      
      
        0
      
      
        ;


      
      
        44
      
       }
    

?

Data Structure Binary Tree: Check if a given Binary Tree is SumTree


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦?。?!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 阿鲁科尔沁旗| 莱西市| 孟州市| 神池县| 榆树市| 鄂伦春自治旗| 穆棱市| 恩施市| 台东县| 金坛市| 卢龙县| 榆社县| 博爱县| 武穴市| 福州市| 清流县| 河东区| 商河县| 滨海县| 万荣县| 天等县| 卢龙县| 杭州市| 遵义县| 莎车县| 五莲县| 买车| 塔河县| 盱眙县| 广东省| 巧家县| 长子县| 墨竹工卡县| 香格里拉县| 平凉市| 永康市| 雷波县| 海原县| 静海县| 新蔡县| 抚顺市|