2.(1)//树的孩子兄弟表示法
typedef struct CSNode{
char data;
struct CSNode* firstchild;
struct CSNode* nextsibling;
}CSNode,*CSTree;
2.(2)以孩子兄弟表示法为存储结构,求树的深度的算法
int Depth(CSTree T) {
if(T == NULL) return 0;
else return max(1 + Depth(T->firstchild),
Depth(T->nextsibling));
}