求助 数据结构二叉树问题
typedef struct bnode{
int data;
struct bnode *lchild, *rchild;
}btree;
错误提示error C2011: “bnode”: “struct”类型重定义
为什么?我没有在其他地方定义过bnode,而且我翻看了前面的程序
在LinkList中我也这样定义过链表 也没出错
能够帮忙解决的请加442665364
非诚勿扰 谢谢
2009-11-13 08:18

ai
2009-11-14 23:12
2009-11-14 23:20
2009-11-15 09:10
2009-11-16 14:09