摘要: /*线性表的操作*/#include<stdio.h>#include<stdlib.h>typedef int ElemType;struct List{ ElemType *list; int size; int MaxSize;};/*初始化列表,即动态存储空间分配并置L为一个空列表*/void initList(struct List *L,int ms){ if(... 阅读全文
posted @ 2010-01-12 01:14 平凡网客 阅读(4111) 评论(0) 推荐(0) 编辑