摘要: //顺序表的实现:(分配一段连续地址给顺序表,像数组一样去操作) #include #include #define OK 1 #define ERROR 0 #define LIST_INIT_SIZE 100 #define INCREMENT 10 typedef int ElemType; typedef struct{ ElemType *elem;//数组指针代表存储... 阅读全文
posted @ 2016-07-25 15:05 风雨缠舟 阅读(293) 评论(0) 推荐(0) 编辑