pat1020
摘要:
#include #include #include typedef struct node{ int value; struct node* left; struct node* right; }node; using namespace std; node* f(int in[],int post[],int length){ node* root=(node*)mall... 阅读全文
posted @ 2017-03-07 22:33 SijingLin 阅读(79) 评论(0) 推荐(0) 编辑