2013年6月3日

数据结构(C语言版)---第二章2.1-2.7

摘要: List.h#ifndef _LIST_H#define _LIST_H#include <stdio.h>#include <stdlib.h>#include <string.h>#define LIST_INIT_SIZE 100#define LIST_INCRE_SIZE 10#define OK 1#define ERROR -1typedef int ElemType;typedef int Status;typedef struct _LIST{ ElemType *elem; int length; int listSize;}List,* 阅读全文

posted @ 2013-06-03 16:02 净坛使者 阅读(463) 评论(7) 推荐(0) 编辑

导航