算法与数据结构考研试题精析-第6章算法设计题15
以孩子兄弟链表为存储结构,设计递归和非递归算法求树的深度#include <stdio.h>#include <stdlib.h>#define maxsize 20typedef struct Node{ char data; struct Node *firstchild,*nextsibling;}Node,*BiTree;int C...