文件名称:数据结构类型定义如下-数据结构全套
文件大小:3.3MB
文件格式:PPT
更新时间:2024-05-15 16:59:27
数据结构
数据结构类型定义如下: #define MAX_NODE 100 typedef struct listnode { int childno ; /* 孩子结点编号 */ struct listno *next ; }CTNode; /* 表结点结构 */ typedef struct { ElemType data ; CTNode *firstchild ; }HNode; /* 头结点结构 */