当前位置:   article > 正文

手动构建二叉树_创建treenode

创建treenode

一、题目

手动构建二叉树

二、思路

1、先new TreeNode[size]数组
2、对数组中的每个val进行赋值,left和right进行置为nullptr
3、从0遍历到size/2-1;根据左孩子和父节点的关系,右孩子和父节点的关系进行链接

三、代码

#include <iostream>
#include <string.h>
#include <string>
#include <vector>
#include <map>
#include <stack>
#include <queue>
#include <algorithm>
#include <unordered_map>
#include <list>
#include <memory>
#include <functional>
#include <set>
#include <iostream>
#include <vector>
#include <algorithm>
#include <limits.h>
#include <math.h>
using namespace std;

struct TreeNode
{
    int val;
    TreeNode *left;
    TreeNode *right;
};

TreeNode *CreateTree(vector<int> &res)
{
    if (res.empty())
    {
        return nullptr;
    }
    int size = res.size();
    TreeNode *node = new TreeNode[size];
    TreeNode *head = &node[0];

    //赋值
    for (int i = 0; i < size; ++i)
    {
        node[i].val = res[i];
        node[i].left = nullptr;
        node[i].right = nullptr;
    }

    //建立关系
    //父节点
    for (int i = 0; i <= size / 2 - 1; ++i)
    {
        //左孩子
        if (2 * i + 1 < size)
        {
            node[i].left = &node[2 * i + 1];
        }
        //右孩子
        if (2 * i + 2 < size)
        {
            node[i].right = &node[2 * i + 2];
        }
    }

    return head;
}

int main()
{
    vector<int> res{1, 10, 6, 3, 4, 1};
    TreeNode *root = CreateTree(res);
    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/596036
推荐阅读
相关标签
  

闽ICP备14008679号