顺序表的创建

数据结构脑图:

数据结构脑图(部分)

创建一个顺序表:

seqList.h

#ifndef SEQLIST_H

#define SEQLIST_H

/*

struct sequence seqList{

int data[30];

int len;

};

*/

#include <stdio.h>

#include <string.h>

#include <stdlib.h>

#define MAX 30

typedef int Datatype;

typedef struct sequence

{

Datatype data[MAX];

int len;

}seqList,*seqListptr;

seqListptr seq_create();

#endif

seqList.c

#include<stdio.h>

#include"seqList.h"

seqListptr seq_create()

{

seqListptr S =(seqListptr)malloc(sizeof(seqListptr));

if (NULL==S)

{

printf("创建失败\n");

return NULL;

}

else

{

printf("创建成功\n");

S->len;//len会生成随机数需要清空

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

return S;

}

}

main.c

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "seqList.h"
int main(int argc, const char *argv[])
{
	
	seqListptr A=seq_create();
	return 0;
}
相关推荐
Choshim-6 分钟前
7-5 排序
数据结构·算法
雾月5532 分钟前
LeetCode1051高度检测器
数据结构·算法
A Runner for leave1 小时前
146.组合总和
java·数据结构·python·算法·leetcode
IT 青年2 小时前
数据结构 (36)各种排序方法的综合比较
数据结构
A Runner for leave3 小时前
147.组合总和II
java·数据结构·python·算法·leetcode
阳光的错3 小时前
数据结构Day一
数据结构·算法
2401_858286113 小时前
110.【C语言】数据结构之判断是否为完全二叉树
c语言·开发语言·数据结构
7yewh5 小时前
LeetCode 力扣 热题 100道(十八)最大子数组和(C++)
c语言·数据结构·c++·算法·leetcode
~yY…s<#>6 小时前
【刷题22】BFS解决最短路问题
数据结构·c++·算法·leetcode·宽度优先