标签:简单 code style color int return tno btn bsp
int count(BTNode *T) { if(T==NULL) return 0; else return count(T->lchild) + count(T->rchild) + 1; }
统计二叉树结点-简单的2行代码
原文地址:http://www.cnblogs.com/cs-lcy/p/7056331.html