摘要: #include #include #include using namespace std; class Node{ public: int el; Node *left,*right; Node(){ left=0;right=0; } Node(int data){ el = data;left=0;right=0; } }; class Tree{ public:... 阅读全文
posted @ 2016-09-27 11:15 蓝拓轩 阅读(579) 评论(0) 推荐(0) 编辑