//查找某个父集合的索引节点所在的层的方法
private int AteLayer(int fN) {
int lN = 1;//层数
int max = 1;//每一层的最大数
for (int i = 1; i <= max; i++)//这i是父节点的索引号
{
if (fN > max)
{
max = max * 2;
lN += 1;
}
}
return lN;
}
二叉树中查找某个节点所在层的方法C#
原文作者:二叉查找树
原文地址: https://blog.csdn.net/yanhui2014/article/details/53198965
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/yanhui2014/article/details/53198965
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。