1 Star 0 Fork 0

李勇震/c语言每日练习

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test_2_28(动态顺序表) 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
李勇震 提交于 2023-02-28 14:08 . add test_2_28(动态顺序表).
test.c
#define _CRT_SECURE_NO_WARNINGS 1
#include"SeqList.h"
void SeqListTest1()
{
SL S1;
SeqListInit(&S1);
SeqListPushBack(&S1,1);
SeqListPushBack(&S1, 2);
SeqListPushBack(&S1, 3);
SeqListPushBack(&S1, 4);
SeqListPushBack(&S1, 5);
SeqListPrint(&S1);
}
int main()
{
SeqListTest1();
}
SeqList.c
#define _CRT_SECURE_NO_WARNINGS 1
#include"SeqList.h"
void SeqListInit(SL* ps)
{
ps->a = NULL;
ps->size = ps->capatify = 0;
}
void SeqListPushBack(SL* ps,SLDataType x)
{
if (ps->size == ps->capatify)
{
int newcapatify = ps->capatify == 0 ? 4 : ps->capatify * 2;
SLDataType* tmp = (SLDataType*)realloc(ps->a, newcapatify * sizeof(SLDataType));
if (tmp == NULL)
{
printf("realloc fail\n");
exit(-1);
}
ps->a = tmp;
ps->capatify = newcapatify;
}
ps->a[ps->size] = x;
ps->size++;
}
void SeqListPrint(SL* ps)
{
for (int i = 0; i < ps->size; ++i)
{
printf("%d ", ps->a[i]);
}
printf("\n");
}
void SeqDestory(SL* ps)
{
free(ps->a);
ps->a = NULL;
}
SeqList.h
#define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
#pragma once
#define N 1000
typedef int SLDataType;
typedef struct SeqList
{
SLDataType* a;
int size;
int capatify;
}SL;
void SeqListInit(SL* ps);
void SeqListPushBack(SL* ps);
void SeqListPrint(SL* ps);
void SeqDestory(SL* ps);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/liyongzhen2004/2022.10.24.git
git@gitee.com:liyongzhen2004/2022.10.24.git
liyongzhen2004
2022.10.24
c语言每日练习
master

搜索帮助