推荐回答
//root为当前树的根结点//array为存储树的数组//pos表示当前root所在array中的位置//起始调用时使用alertTheTreeroot,array,0;即可,默认array数组各元素值为非法值//标识当前位置无结点。MAX为数组array的最大长度voidalertTheTreeTreeNode*root,int*array,intpos{ifroot==NULL||pos>=MAXreturn;array=root->data;alertTheTreeroot->left,array,2*pos+1-1;alertTheTreeroot->right,array,2*pos+1;。
龚小英2019-12-21 19:57:56
提示您:回答为网友贡献,仅供参考。