摘要: C++语言: Codee#23233001 #include <stdio.h>002 #include <malloc.h>003 #define MaxSize 100004 typedef char ElemType;005 typedef struct node006 {007 ElemType data;008 int ltag, rtag; /*增加的线索标记*/009 struct node *lchild;010 struct node *rchild;011 } TBTNode;012 void CreateTBTNode(TBTNode * & 阅读全文
posted @ 2011-10-15 21:57 strorehouse 阅读(1046) 评论(0) 推荐(0) 编辑