摘要: 1、线性表的顺序存储 #include <stdio.h> #include <malloc.h> typedef int ElementType; #define MAXSIZE 10 struct listStr { int data[MAXSIZE]; int last; }; typedef 阅读全文
posted @ 2017-04-05 00:28 crazybird123 阅读(192) 评论(0) 推荐(0)