摘要: #include <stdio.h>#include <stdlib.h>#define list_maxsize 100typedef int ElemType ; struct List{ ElemType data[list_maxsize]; int length;} ;/* 初始化锭表 * 阅读全文
posted @ 2010-01-14 20:27 平凡网客 阅读(487) 评论(0) 推荐(1) 编辑