树结构节点类型定义 #define MAX_NODE 100 typedef struct listnode { int childno; /* 孩子节点编号 */ struct listnode *next; } CTNode; /* 表节点结构 */ typedef struct { IOS 24 次浏览 2024-06-16