树的孩子链表法实现(c语言) #include #include #define M 100 typedef char Etype; //定义树结点值的类型字符型 typedef struct CSNode /*树结点结构*/ {Etype data; struct CSNode *firstchild,*nextsibling; }CSNode,*CSTree; /*函数原型声明*/ …………