摘要: #include #include using namespace std;templateclass BinaryTree{struct Node { T data; Node* lChildptr; Node* rChildptr; Node(T dataNew) { data = dataNew; lCh... 阅读全文
posted @ 2011-11-19 14:09 Thomas Hwang 阅读(180) 评论(0) 推荐(0) 编辑