自学内容网 自学内容网

12.12 枚举 共用体 数据结构 创建顺序表

 1.思维导图

2. 创建顺序表

1>头文件  test.h

#ifndef __TEST_H__
#define __TEST_H__

#include<stdlib.h>
#include<stdio.h>
#include<string.h>

#define MAX 30
//typedef  int  datatype;

typedef struct sequence
{
int data[MAX];
int len;

}seqlist,*seqlistPtr;

seqlistPtr seq_create();

#endif

 2>源文件 test.c

include "test.h"

seqlistPtr seq_create()
{
seqlistPtr S=(seqlistPtr)malloc(sizeof(seqlist));
if (NULL==S)
{
printf("创建失败");
return NULL;
}
printf("创建成功");

S->len=0;

memset(S->data,0,sizeof(S->data));
return S;
}

 3>测试文件 main.c


原文地址:https://blog.csdn.net/weixin_56261190/article/details/144436609

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!