树的孩子链表法实现(c语言)

时间:2017-01-03 09:04:32
【文件属性】:
文件名称:树的孩子链表法实现(c语言)
文件大小:13KB
文件格式:DOCX
更新时间:2017-01-03 09:04:32
孩子链表 树的孩子链表法实现(c语言) #include #include #define M 100 typedef char Etype; //定义树结点值的类型字符型 typedef struct CSNode /*树结点结构*/ {Etype data; struct CSNode *firstchild,*nextsibling; }CSNode,*CSTree; /*函数原型声明*/ …………

网友评论