技术笔记
本博客记录踩坑脱坑、早年知识归纳. 新博客常常更新: https://hanxinle.github.io

导航

 

2017年9月20日

摘要: 1. 统计节点数 1 int CountNodes ( SearchTree T ) { 2 if ( T == NULL) 3 return 0; 4 else 5 return 1 + CountNodes ( T->Left) + CountNodes (T->Right); 6 } 2.统计 阅读全文
posted @ 2017-09-20 17:25 九品加 阅读(257) 评论(0) 推荐(0) 编辑