摘要: #include"iostream" #include"queue" using namespace std; int x[1000],z[1000]; struct Tree{ int data; Tree *left,*right; }; void xzCreate(Tree* &t,int xl,int zl,int len){ //xl:先序起始下标,z... 阅读全文
posted @ 2018-05-23 17:36 oleolema 阅读(3472) 评论(0) 推荐(0) 编辑