摘要: 1,递归求二叉树宽度, int Height(BiTree T) { if(T==NULL) return 0; else if(T->left==NULL && T->right==NULL) return 1; else { int left,right; left=Height(T->left 阅读全文
posted @ 2019-11-09 20:12 一世安然L 阅读(221) 评论(0) 推荐(0)