#include <stdio.h>#include <string.h>#include <stdlib.h>struct node{ int data; int h; struct node *lc,*rc; //平衡二叉树 需要一个 h 来记录平衡因子};int max(......
#include <stdio.h>#include <stdlib.h>#include <string.h>struct node{ char data ; struct node *l,*r;};struct node *creat(char *inorder,char *postor...
#include <bits/stdc++.h>using namespace std;struct node{ char data; struct node *lc, *rc;};char s[505];int num;struct node *creat(){ struct ...
#include <bits/stdc++.h>using namespace std;struct node{ char data; struct node *lc, *rc;};char a[100],b[100];int n;struct node *creat(int len, c...
#include <bits/stdc++.h>using namespace std;struct Tree{ char data; struct Tree *right; struct Tree *left;};char str[55];int num;struct Tree...