数据结构C语言版——初始化一个线性表

问题描述
           初始化一个线性表
程序代码
#include"stdio.h"
#include"stdlib.h"
#define OVERFLOW 0
#define OK  1
#define LIST_INIT_SIZE  100
#define LISTINCREMENY  10
typedef struct
{
	int *elem;
	int length;
	int listsize;
}SqList;
 int InitList_Sq(SqList *L)
 {
 L->elem =(int *)malloc(LIST_INIT_SIZE*sizeof(int));
 if(!L->elem ) exit(OVERFLOW);
 L->length =0;
 L->listsize=LIST_INIT_SIZE;
 return OK;

 }
   int main()
   {
   SqList L;
   InitList_Sq(&L);
   printf("线性表Sqlist初始化成功:\n");
    system("pause");
	return 0;

   }

输出结果
  数据结构C语言版——初始化一个线性表_第1张图片

你可能感兴趣的:(数据结构C语言)