用c语言编写一段程序,建立一个顺序表(需要自己输入数据,并插入数据、删除数据)。

日期:2019-10-05 16:52:02 人气:1

用c语言编写一段程序,建立一个顺序表(需要自己输入数据,并插入数据、删除数据)。

#include #define LIST_INIT_SIZE 10#define LISTINCREMENT 10#define ERROR 0typedef struct{ int *elem; int length; int listsize;} SqList;void InitList_Sq(SqList *l){ l->elem=(int *)malloc(LIST_INIT_SIZE*sizeof(int)); if(!l->elem) exit(0); l->length=
    A+
热门评论