摘要: int HeightOfBiTree(BiTree root) { //求二叉树的高度 int treeHeight = 0; if (root != NULL) { int leftHeight = HeightOfBiTree(root->lchild); int rightHeight = H 阅读全文
posted @ 2020-06-16 15:53 lin1235 阅读(156) 评论(0) 推荐(0)