摘要: 线性表 阅读全文
posted @ 2018-04-02 09:57 lihaiqr 阅读(96) 评论(0) 推荐(0)
摘要: 从二叉树到数 阅读全文
posted @ 2018-03-11 20:49 lihaiqr 阅读(96) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2018-03-11 16:43 lihaiqr 阅读(88) 评论(0) 推荐(0)
摘要: 代码: #include <stdio.h> #include <malloc.h> #define MaxSize 50 typedef char ElemType; typedef struct { ElemType elem[MaxSize]; int length; } SqList;/*顺 阅读全文
posted @ 2018-02-24 12:47 lihaiqr 阅读(550) 评论(0) 推荐(0)