摘要:
捣鼓了一个晚上,最后还是照着书本把这BST弄出来了。悲催的娃娃啊,不动手写这个还真的很难啊!BSTree.h 1 #ifndef BTREE_H_ 2 #define BTREE_H_ 3 4 #include <iostream> 5 using std::ostream; 6 7 template <class TreeDataType> 8 class BSTree 9 { 10 private: 11 class BSTNode 12 { 13 public: 14 BSTNode* left; 15 BST... 阅读全文
posted @ 2012-08-18 22:53
涵曦
阅读(1366)
评论(0)
推荐(0)