zobAAA二叉树的建立与遍历
#include <stdio.h>#include <stdlib.h>#define max 100typedef struct node{ //二叉树结构char data;struct no