帮帮忙吧,这个哪儿错了

#include "stdio.h" #include "malloc.h" #define MaxSize 100 typedef char ElemType; typedef struct node { ElemType data; struct node *lchild; struct node *rchild; }BTNode; void CreateBTNode(BTNode * &b,char *str) { BTNode * St[MaxSize], * p; int top=-1,k,j=0; char ch; b=NULL;...
默认分类 | 2013-10-24 20:31 | 阅读 344 次 | 评论 0 条
文章分类
文章归档
最新评论