摘要: 1 #include 2 3 struct BSTNode { 4 int key; 5 BSTNode* left; 6 BSTNode* right; 7 BSTNode(int x) : key(x), left(nullptr), right(nullptr) { 8 } 9 }; 10 11 //re... 阅读全文
posted @ 2017-08-03 15:40 wxquare 阅读(417) 评论(0) 推荐(1) 编辑