摘要: 1 #include 2 #include 3 using namespace std; 4 5 template 6 struct BinaryNode 7 { 8 T element; 9 BinaryNode *left; 10 BinaryNode *right; 11 12 BinaryNode(cons... 阅读全文
posted @ 2016-10-23 16:09 douzujun 阅读(484) 评论(0) 推荐(0) 编辑