摘要: A.Structure of a Binary Tree 模拟题,按照题意模拟即可 #include<bits/stdc++.h> using namespace std; const int maxn=1014; struct node { int data; node * left; node 阅读全文
posted @ 2020-03-26 22:32 zlc0405 阅读(440) 评论(0) 推荐(0) 编辑