【数据结构】之顺序表(C语言版)
1.线性表的定义
线性表是n个具有相同特性的数据元素的有限序列,线性表是一种在实际生活中广泛使用的数据结构,常见的线性表有:顺序表、链表、栈、队列、字符串…
2.什么是顺序表
顺序表即是线性表的顺序存储,他是用一组地址连续的存储单元依次存储线性表中的数据元素,从而使得逻辑上相邻的两个元素在物理位置上也相邻。
顺序表的定义
typedef int SLDataType;
typedef struct SeqList
{
SLDataType* a;
int size;
int capacity;
}SL;
3.顺序表的接口实现
需要分装三个部分实现:Seqlist.h、Seqlist.c、test.c。 【Seqlist.h】里面用来写相关头文件的引用、接口函数的声明和结构体的类型定义。 【Seqlist.c】里面用来实现所有的接口函数。 【test.c】里面用来测试接口函数以及功能菜单的实现 【Seqlist.h】头文件以及相关代码如下:
#pragma once
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<assert.h>
typedef int SLDataType;
typedef struct SeqList
{
SLDataType* a;
int size;
int capacity;
}SL;
void SeqListInit(SL* ps);
void SeqListPushBack(SL* ps);
void SeqListPopBack(SL* ps);
void SeqListPusFront(SL* ps);
void SeqListPopFront(SL* ps);
void SeqListCheckCapacity(SL* ps);
int SeqListFind(SL* ps, SLDataType x);
void SeqListInsert(SL* ps);
void SeqListErase(SL* ps);
void SeqListPrint(SL* ps);
void SeqListDestory(SL* ps);
void SeqListModify(SL* ps);
【test.c】文件中菜单的实现如下:
#define _CRT_SECURE_NO_WARNINGS 1
#include"Seqlist.h"
void menu()
{
printf(" 顺序表操作 \n");
printf("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n");
printf(" 1.尾插入 2.尾删除 \n");
printf(" 3.头插入 4.头删除 \n");
printf(" 5.指定下标位置插入 6.打印顺序表 \n");
printf(" 7.删除指定位置数据 8.修改指定数值 \n");
printf("~~~~~~~~~~~~~~~~~~~~~0.退出程序~~~~~~~~~~~~~~~~~~~~~\n");
}
int main()
{
int input = 0;
SL s1;
SeqListInit(&s1);
do
{
menu();
printf("请选择:");
scanf("%d", &input);
switch (input)
{
case 1:
SeqListPushBack(&s1);
break;
case 2:
SeqListPopBack(&s1);
break;
case 3:
SeqListPusFront(&s1);
break;
case 4:
SeqListPopFront(&s1);
break;
case 5:
SeqListInsert(&s1);
break;
case 6:
SeqListPrint(&s1);
break;
case 7:
SeqListErase(&s1);
break;
case 8:
SeqListModify(&s1);
break;
case 0:
SeqListDestory(&s1);
printf("退出程序\n");
break;
default:
printf("选择错误,请重新选择\n");
break;
}
} while (input);
return 0;
}
(1)初始化顺序表
void SeqListInit(SL* ps)
{
ps->a = NULL;
ps->capacity = ps->size = 0;
}
(2)顺序表检测增容问题
为避免频繁增容,我们一次性去增容上一次空间大小的两倍,在这里需要注意的是当传给realloc的指针为空时,realloc的用法等同于malloc。
void SeqListCheckCapacity(SL* ps)
{
if (ps->capacity == ps->size)
{
int newcapacity = ps->capacity == 0 ? 4 : ps->capacity * 2;
SLDataType* tmp = realloc(ps->a,
newcapacity * sizeof(SLDataType));
if (tmp == NULL)
{
printf("realloc fail\n");
exit(-1);
}
ps->a = tmp;
ps->capacity = newcapacity;
}
}
(3)顺序表尾插
在这里我们使用while循环可以一次性插入多个数据。
void SeqListPushBack(SL* ps)
{
SeqListCheckCapacity(ps);
SLDataType x;
printf("请输入您要插入的元素:");
scanf("%d", &x);
while (x!= EOF)
{
ps->a[ps->size] = x;
ps->size++;
SeqListCheckCapacity(ps);
scanf("%d", &x);
}
}
函数功能测试
(4)顺序表尾删
void SeqListPopBack(SL* ps)
{
assert(ps->size);
if (ps->size > 0)
{
ps->size--;
printf("尾删成功\n");
}
}
函数功能测试
(5)顺序表头插
和尾插一样,在这里我们可以使用循环一次性插入多个数据
void SeqListPusFront(SL* ps)
{
SeqListCheckCapacity(ps);
SLDataType x;
printf("请输入您要头插的元素:");
scanf("%d", &x);
while (x != EOF)
{
int i = 0;
for (i = ps->size - 1; i >= 0; i--)
ps->a[i + 1] = ps->a[i];
ps->a[0] = x;
ps->size++;
SeqListCheckCapacity(ps);
scanf("%d", &x);
}
}
函数功能测试
(6)顺序表头删
void SeqListPopFront(SL* ps)
{
assert(ps->size);
if (ps->size > 0)
{
int i = 0;
for (i = 0; i < ps->size - 1; i++)
ps->a[i] = ps->a[i + 1];
}
ps->size--;
printf("头删成功\n");
}
函数功能测试
(7)顺序表查找指定值
int SeqListFind(SL* ps, SLDataType x)
{
assert(ps->size);
int i = 0;
while (i < ps->size)
{
if (ps->a[i] == x)
return i;
i++;
}
return -1;
}
(8)顺序表指定下标位置插入
void SeqListInsert(SL* ps)
{
int pos = 0;
SLDataType x;
printf("请输入下标和需要插入的数据");
scanf("%d%d", &pos, &x);
while (pos<0||pos > ps->size)
{
printf("下标位置超出范围,请重新输入:");
scanf("%d", &pos);
}
SeqListCheckCapacity(ps);
for (size_t i = ps->size - 1; i >= pos; i--)
ps->a[i + 1] = ps->a[i];
ps->a[pos] = x;
ps->size++;
printf("插入成功\n");
}
函数功能测试
(9)删除指定位置的数据
在这里我们需要注意的是指定pos的范围是大于size-1,而上面的指定插入的pos的范围是大于size。这是因为数组的插入可以在最后一个元素的后面插入,而删除只能是删除最后一个元素。
void SeqListErase(SL * ps)
{
assert(ps->size);
int pos = 0;
printf("请输入所需删除的数值下标");
scanf("%d", &pos);
while (pos<0 || pos>ps->size - 1)
{
printf("pos invalid,请重新输入下标:");
scanf("%d", &pos);
}
for (int i = pos; i < ps->size; i++)
ps->a[i] = ps->a[i + 1];
ps->size--;
printf("删除成功\n");
}
函数功能测试
(10)打印数据表
void SeqListPrint(SL* ps)
{
assert(ps->size);
for (int i = 0; i < ps->size; i++)
printf("%d ", ps->a[i]);
printf("\n");
}
(11)顺序表修改指定数值
这里我们需要用到“顺序表查找指定值”这个函数,用一个整型变量来接收所需要修改元素的下标,最后再修改。
void SeqListModify(SL* ps)
{
SLDataType value, x ;
printf("请输入所需要修改的元素:");
scanf("%d", &x);
int tmp = SeqListFind(ps, x);
while (tmp == -1)
{
printf("该元素不存在,请重新输入:");
scanf("%d", &x);
tmp = SeqListFind(ps, x);
}
if (tmp != -1)
{
printf("请输入修改后的值:");
scanf("%d", &value);
ps->a[tmp] = value;
printf("修改成功\n");
}
}
函数功能测试
(12)销毁顺序表
void SeqListDestory(SL* ps)
{
assert(ps);
free(ps->a)
ps->a=NULL;
ps->size = 0;
ps->capacity = 0;
}
总节 好了,以上就是顺序表的详解了,各位小伙伴们如果觉得不错的话可以支持一下哦!
|