摘要:
1. 编程题:定义树的孩子兄弟表示法的存储结构,并实现如下图树的存储,并在主函数中验证。(运行结果截图) #include "stdio.h" typedef char DataType ; typedef struct Node{ DataType data; struct Node *first 阅读全文
posted @ 2016-04-21 23:13
黑夜的树
阅读(221)
评论(0)
推荐(0)