根據先序和中序構建二叉樹

#include<bits/stdc++.h> using namespace std; typedef struct node { char data; struct node *lc,*rc; }node,*link; char pre[1005],in[1005]; link creat(char *pre,char *in,int p1,int p2,int i1,int
相關文章
相關標籤/搜索