编写C语言算法,用下列二叉链表的结构,输出所有从根结点到叶子结点的路径
#define ElemType char typedef struct CSNode{ ElemType data; struct CSNode *firstchild, *nextsibling; }CSNode,*CSTree;