摘要: 1 #include "stdio.h" 2 #include "stdlib.h" 3 #include "string.h" 4 typedef char DataType; 5 typedef struct BinTree{ 6 DataType key; //数据存放 7 struct BinTree *left; //左孩子 ... 阅读全文
posted @ 2019-05-30 01:06 oops_w 阅读(193) 评论(0) 推荐(0) 编辑