//二叉树第i层结点个数intLevelNodeCount(BiTree T,int i){if(T ==NULL|| i <1)return0;if(i ==1)return1;returnLevelNodeCount(T->lchild, i -1)+LevelNodeCount(T->rchild, i -1);}intGetDepthOfBiTree(BiTree T){if(T ==NULL)return0;returnGetDepthOfBiTree(T->lchild)>GetDepthOfBiTree(T->rchild)?GetDepthOfBiTree(T->lchild)+1:GetDepthOfBiTree(T->rchild)+1;}intMaxWidth(BiTree T){int per =0;int max =0;for(int i =1; i <=GetDepthOfBiTree(T); i++){
per =LevelNodeCount(T, i);if(per > max)
max = per;}return max;}
今天给同学们分享一篇生信文章“Identification of new co-diagnostic genes for sepsis and metabolic syndrome using single-cell data analysis and machine learning algorithms”,这篇文章发表Front Genet.期刊上,影响因子为3.7。 结果解读&#x…