用数组创建二叉树的一种方法

很多面试题都是二叉树相关的, 因此经常需要测试自己的写的程序, 那么创建二叉树就必不可少, 用数组中的值初始化二叉树是一种比较简单的方法.

typedef struct BSTreeNode{
int m_nValue;
struct BSTreeNode * m_pLeft;
struct BSTreeNode * m_pRight;
}BSTreeNode;

BSTreeNode * creatBTree(int data[], int index, int n)  
{
BSTreeNode * pNode = NULL;

if(index < n && data[index] != -1)  //数组中-1 表示该节点为空
{
pNode = (BSTreeNode *)malloc(sizeof(BSTreeNode));
if(pNode == NULL)
return NULL;
pNode->m_nValue = data[index];
pNode->m_pLeft = creatBTree(data, 2 * index + 1, n);  //将二叉树按照层序遍历, 依次标序号, 从0开始
pNode->m_pRight = creatBTree(data, 2 * index + 2, n);
}

return pNode;
}

    原文作者:jack_ooneil
    原文地址: https://blog.csdn.net/haoyuedangkong_fei/article/details/51840963
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞