2018年11月4日

利用二叉链表递归和非递归算法求叶子结点的数量

摘要: 这是我的博客的第一篇文章,是学校里布置的一道作业题。 之后有时间的话我会发布更多有意思的博客 #include<iostream>#include<stack>using namespace std;int cnt1=0,cnt2=0;struct BTNode{ int data; BTNode 阅读全文

posted @ 2018-11-04 21:38 Numb_lzw 阅读(741) 评论(0) 推荐(0) 编辑

导航