线性表(linear list)是n个具有相同特性的数据元素的有限序列。 线性表是一种在实际中广泛使用的数据结构
常见的线性表:顺序表、链表、栈、队列、字符串…
线性表在逻辑上是线性结构,也就说是连续的一条直线。但是在物理结构上并不一定是连续的,线性表在物理上存储时,通常以数组和链式结构的形式存储。
顺序表和链表的存储结构如下:
顺序表是用一段物理地址连续的存储单元依次存储数据元素的线性结构,一般情况下采用数组存储。在数组上完成数据的增删查改
而顺序表又可以分为:
使用定长数组存储元素:
也就是说,已经把数组的长度内定了,用宏定义了数组的长度
使用动态开辟的数组存储:
用malloc函数开辟空间,当数组的存储空间不够可以用realloc扩容,在顺序表中我们用的更多的是动态的顺序表
这里我们只实现动态的顺序表,静态顺序表只适用于确定知道需要存多少数据的场景。静态顺序表的定长数组导致N定大了,空间开多了浪费,开少了不够用。所以现实中基本都是使用动态顺序表,根据需要动态的分配空间大小,所以下面我们实现动态顺序表
头文件如下:
#include
#include
#include
#include
#include
typedef int SLDateType;
typedef struct SeqList
{
SLDateType* a;
int size;
int capacity;
}SL;
// 对数据的管理:增删查改
void SeqListInit(SL* ps);
void SeqListDestroy(SL* ps);
void SeqListPrint(SL* ps);
void SeqListPushBack(SL* ps, SLDateType x);
void SeqListPushFront(SL* ps, SLDateType x);
void SeqListPopFront(SL* ps);
void SeqListPopBack(SL* ps);
// 顺序表查找
int SeqListFind(SL* ps, SLDateType x);
// 顺序表在pos位置插入x
void SeqListInsert(SL* ps, int pos, SLDateType x);
// 顺序表删除pos位置的值
void SeqListErase(SL* ps, int pos);
//修改pos位置的值
void SeqListModify(SL* ps, int pos, SLDateType x);
首先为了方便顺序表的灵活运用,我们用typedef来在头文件中定义int为SLDateType,如果下次是字符型的数据,我们只需要在这里将int改为char,后续的代码就不用更改,其次我们定义一个结构体为顺序表
typedef int SLDateType;
typedef struct SeqList
{
SLDateType* a;//数组,存放数据
int size;//数组内存放有效数据的元素
int capacity;//数组能够存储数据的容量
}SL;//将顺序表有typedef简化为SL,方便后面的代码撰写
我们在顺序表中创建一个表后,首先要做的就是初始化这个数据结构,在今后的学习中我们更是要养成一个初始化的习惯,不然很容易出现bug,有些编译器甚至会警告
我们在这里将初始化函数取名为SeqListInit,所需参数为结构体的地址
我们首先断言这个顺序表,防止为空,所以我们在头文件中直接写下assert.h
在这里我们要实现的是动态顺序表,所以我们用malloc动态开辟数组a的空间,记住,要判断动态开辟是否为空,不然部分的编译器会有警告
初始化我们直接将数组的size初始化为0,capacity我们初始化为4
这样我们初始化就完成了
void SeqListInit(SL* ps)
{
assert(ps);
ps->a = (SLDateType*)malloc(sizeof(SLDateType) * 4);
if (ps->a == NULL)
{
perror("malloc");
return;
}
ps->size = 0;
ps->capacity = 4;
}
在函数完成后我们需要销毁顺序表,避免内存的浪费和野指针的出现,所以我们定义一个销毁顺序表的函数:
首先要做的还是断言
然后将数组的空间free掉,并将其置为空指针(防止出现野指针),最后将size和capacity都置为0,就完成了销毁
void SeqListDestroy(SL* ps)
{
assert(ps);
free(ps->a);
ps->a = NULL;
ps->size = 0;
ps->capacity = 0;
}
我们增删查改后需要打印这个顺序表
打印函数和数组一样,不做过多的讲解
void SeqListPrint(SL* ps)
{
assert(ps);
for (int i = 0; i < ps->size; i++)
{
printf("%d ", ps->a[i]);
}
printf("\n");
}
凡是插入数据,咱们都要检查他的容量是否够,所以我们可以先写一个函数检查容量,如果数组已满,就扩容
当size和capacity相等的时候就是容量已满,我们就realloc开辟一个新的空间,大小为原先a数组的两倍,然后再将新的空间capacity给数组a,capacity变成原来的两倍
void CheckCapacity(SL* ps)
{
assert(ps);
if (ps->size == ps->capacity)
{
SLDateType* temp = (SLDateType*)realloc(ps->a,ps->capacity*sizeof(SLDateType*) * 2);
if (temp == NULL)
{
perror("realloc");
return;
}
ps->a = temp;
ps->capacity *= 2;
}
}
数据的尾插:
尾插很容易,先检查容量
然后将数组的下标为size的位置插入数据x
同时size要++
void SeqListPushBack(SL* ps, SLDateType x)
{
assert(ps);
CheckCapacity(ps);
ps->a[ps->size] = x;
ps->size++;
}
头插:
同样的我们首先检查容量,并且要将所有的数据后移一位,再将数据x插入数组下标为0的位置,同时size++
void SeqListPushFront(SL* ps, SLDateType x)
{
assert(ps);
CheckCapacity(ps);
int end = ps->size - 1;
while (end>=0)
{
ps->a[end + 1] = ps->a[end];
end--;
}
ps->a[0] = x;
ps->size++;
}
删除的时候一定要记得断言,因为空顺序表就删不了了
头删:
我们将下标为1的元素往前移动,然后size–就可以完成删除了,移动一次,begin++,同时begin是要小于size的,也就是可以等于size-1
void SeqListPopFront(SL* ps)
{
assert(ps);
int begin = 1;
while (beginsize)
{
ps->a[begin] = ps->a[begin - 1];
begin++;
}
ps->size--;
}
尾删:
尾删我们直接将size-1下标的位置置为0,然后size–就可以了,当然,首先就得记得断言!
void SeqListPopBack(SL* ps)
{
assert(ps);
ps->a[ps->size - 1] = 0;
ps->size--;
}
如果在顺序表中查找一个数据的位置,该怎么办呢?
很简单,我们可以遍历这个数组,然后返回下标就可以了,数据可以直接进行下标的访问,这就很舒服了,如果找不到,这里我就然他返回-1,因为-1是不可能为数组的下标的
int SeqListFind(SL* ps, SLDateType x)
{
assert(ps);
for (int i = 0; i < ps->size; i++)
{
if (ps->a[i] == x)
{
return i;
}
return -1;
}
}
在这里的插入数据,我们首先要将知道pos位置,而且pos位置要是大于等于0,小于等于size的,因为头插就是下标为0的位置,尾插就是下标为size的位置,之前的头插尾插我们可以直接用这个函数
插入数据我们先将pos位置以及后面的元素的值往后面移动,然后再直接将a[pos]赋值为x,
并且也要从最后一个位置开始往前移动,同时size++
void SeqListInsert(SL* ps, int pos, SLDateType x)
//先移动后插入
{
assert(ps);
assert(pos >= 0 && pos <= ps->size);
CheckCapacity(ps);
int end = ps->size - 1;
while (pos <= ps->size - 1)
{
ps->a[end+1] = ps->a[end];
end++;
}
ps->a[pos] = x;
ps->size++;
}
pos位置的删除我们可直接将pos+1位置的元素往前面移动,然后size–
void SeqListErase(SL* ps, int pos)
{
assert(ps);
assert(pos >= 0 && pos < ps->size);
int begin = pos + 1;
while (begin < ps->size - 1 )//这里是a[begin] = ps->a[begin + 1];
begin++;
}
ps->size--;
}
修改也很容易,直接下标访问,赋值为x
void SeqListModify(SL* ps, int pos, SLDateType x)
{
assert(ps);
assert(pos >= 0 && pos < ps->size);
ps->a[pos] = x;
}
到这里,顺序表的实习就完成了,完整代码如下:
头文件:
#include
#include
#include
#include
#include
typedef int SLDateType;
typedef struct SeqList
{
SLDateType* a;
int size;
int capacity;
}SL;
// 对数据的管理:增删查改
void SeqListInit(SL* ps);
void SeqListDestroy(SL* ps);
void SeqListPrint(SL* ps);
void SeqListPushBack(SL* ps, SLDateType x);
void SeqListPushFront(SL* ps, SLDateType x);
void SeqListPopFront(SL* ps);
void SeqListPopBack(SL* ps);
// 顺序表查找
int SeqListFind(SL* ps, SLDateType x);
// 顺序表在pos位置插入x
void SeqListInsert(SL* ps, int pos, SLDateType x);
// 顺序表删除pos位置的值
void SeqListErase(SL* ps, int pos);
//修改pos位置的值
void SeqListModify(SL* ps, int pos, SLDateType x);
函数定义:
void SeqListInit(SL* ps)
{
assert(ps);
ps->a = (SLDateType*)malloc(sizeof(SLDateType) * 4);
if (ps->a == NULL)
{
perror("malloc");
return;
}
ps->size = 0;
ps->capacity = 4;
}
void SeqListDestroy(SL* ps)
{
assert(ps);
free(ps->a);
ps->a = NULL;
ps->size = 0;
ps->capacity = 0;
}
void SeqListPrint(SL* ps)
{
assert(ps);
for (int i = 0; i < ps->size; i++)
{
printf("%d ", ps->a[i]);
}
printf("\n");
}
void CheckCapacity(SL* ps)
{
assert(ps);
if (ps->size == ps->capacity)
{
SLDateType* temp = (SLDateType*)realloc(ps->a,ps->capacity*sizeof(SLDateType*) * 2);
if (temp == NULL)
{
perror("realloc");
return;
}
ps->a = temp;
ps->capacity *= 2;
}
}
//尾插
void SeqListPushBack(SL* ps, SLDateType x)
{
assert(ps);
CheckCapacity(ps);
ps->a[ps->size] = x;
ps->size++;
}
//头插
void SeqListPushFront(SL* ps, SLDateType x)
{
assert(ps);
CheckCapacity(ps);
int end = ps->size - 1;
while (end>=0)
{
ps->a[end + 1] = ps->a[end];
end--;
}
ps->a[0] = x;
ps->size++;
}
//头删
void SeqListPopFront(SL* ps)
{
assert(ps);
int begin = 1;
while (beginsize)
{
ps->a[begin] = ps->a[begin - 1];
begin++;
}
ps->size--;
//可以用SeqListErase(ps, 0)
}
//尾删
void SeqListPopBack(SL* ps)
{
assert(ps);
ps->a[ps->size - 1] = 0;
ps->size--;
//可以用SeqListErase(ps,size-1)
}
// 顺序表查找
int SeqListFind(SL* ps, SLDateType x)
{
assert(ps);
for (int i = 0; i < ps->size; i++)
{
if (ps->a[i] == x)
{
return i;
}
return -1;
}
}
// 顺序表在pos位置插入x
void SeqListInsert(SL* ps, int pos, SLDateType x)
//先移动后插入
{
assert(ps);
assert(pos >= 0 && pos <= ps->size);
CheckCapacity(ps);
int end = ps->size - 1;
while (pos <= ps->size - 1)
{
ps->a[end+1] = ps->a[end];
end++;
}
ps->a[pos] = x;
ps->size++;
}
void SeqListErase(SL* ps, int pos)
{
assert(ps);
assert(pos >= 0 && pos < ps->size);
int begin = pos + 1;
while (begin < ps->size - 1)
{
ps->a[begin] = ps->a[begin + 1];
begin++;
}
ps->size--;
}
void SeqListModify(SL* ps, int pos, SLDateType x)
{
assert(ps);
assert(pos >= 0 && pos < ps->size);
ps->a[pos] = x;
}
今天的分享到这里就结束了,谢谢大家的支持!