摘要: 1 #ifndef 二叉查找树_H 2 #define 二叉查找树_H 3 4 #include <iostream> 5 6 //using namespace std; 头文件里不要这样写 7 8 enum Boolean {FALSE, TRUE};//自己做一个boolean 9 10 template<class Type> 11 class Element 12 { 13 public: 14 Type key; 15 //添加更多的数据较容易 16 }; 17 18 template <class Type> class B... 阅读全文
posted @ 2012-12-17 15:00 uniquews 阅读(180) 评论(0) 推荐(0) 编辑