2016年4月14日
摘要: #include "stdio.h" #include "stdlib.h" #define MAX 30 typedef char DataType; typedef struct Node{ DataType data; /* 数据信息字段 */ int parent; /* 双亲位置字段,以双亲结点在数组中的下标来表示 */ }PType... 阅读全文
posted @ 2016-04-14 16:29 说变就变 阅读(239) 评论(0) 推荐(0) 编辑