摘要: #include "stdio.h" #include "malloc.h"#define maxsize 100typedef int datatype;typedef struct node { datatype data; struct node *Lchild,*Rchild; }BTNode;void CreateBTNode(BTNode *&b,char *str) { struct node *st[maxsize],*p=NULL; int top=-1,k,j=0; char ch; b=NULL; ch=str[j]; wh 阅读全文
posted @ 2013-09-30 11:24 露水上的青蛙 阅读(247) 评论(0) 推荐(0) 编辑