- 博客(2)
- 资源 (2)
- 收藏
- 关注
原创 二叉树(左右孩子法实现)
头文件BiTree.h#include<iostream>const int MAXSIZE=20;template<class T>struct BiTNode{ T data; struct BiTNode<T> *lch; struct BiTNode<T> *rch;};template<class T>clas...
2018-03-11 12:47:55 2150
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人