摘要: #include #include #include #include using namespace std; struct BinaryTree{ int weight; struct BinaryTree *left,*right; }; int subtree_count(const struct BinaryTree *root,int m){... 阅读全文
posted @ 2018-08-27 15:37 ray5wang 阅读(141) 评论(0) 推荐(0) 编辑