数据结构 : 顺序表详解

顺序表


前言

首先在了解顺序表之前我们要知道线性表的概念:
零个或多个数据元素的有限序列
**示例:我们所熟悉的十二星座列表就是线性表,首先线性表是一个序列,其数据元素之间是有顺序的;

线性表(linearlist)是n个具有相同特性的数据元素的有限序列。 线性表是⼀种在实际中⼴泛使⽤的数据结构,常⻅的线性表:顺序表、链表、栈、队列、字符串…
线性表在逻辑上是线性结构,也就说是连续的⼀条直线。但是在物理结构上并不⼀定是连续的,线性表在物理上存储时,通常以数组和链式结构的形式存储。


一、顺序表的概念

线性表的顺序存储结构,指的是用一段物理地址连续的存储单元依次存储线性表的数据元素.
⼀般情况下采⽤数组存储.
顺序表的底层结构是数组,对数组的封装,实现了常⽤的增删改查等接⼝.

二、顺序表

1.顺序存储定义

顺序表也分静态顺序表动态顺序表
本篇文章用的数据类型是结构体型

#define N 10
typedef int SLDataType;//定义数据类型为 int

//静态顺序表
struct SeqList
{
	SLDataType arr[N];//定长数组
	int size;//有效数据个数
}SL;
  1. 静态顺序表需要确定数据的大小
    这个大小不太好控制,容易造成空间浪费或者空间大小不够用
  2. 所以我们要引用动态顺序表
    动态顺序表的好处是先定义数据,不需要预先给定空间大小,后面根据需求realloc
//动态顺序表
typedef struct SeqList
{
	SLDataType* arr;
	SLDataType  size;//有效数据个数
	SLDataType capacity;//空间容量
}SL;

这里用typedef将结构体类型struct SeqList重命名为叫SL,方便后面调用
SLDataType为顺序表中的数据类型,这个数据类型在本文中为int
size为顺序表的实际长度

2.顺序表的初始化

.
初始化时这里只是开辟了一个空间并置为空指针
把结构体中的数据全初始化为0;

//顺序表的创建
void SLInit(SL* ps)//形参
{
	ps->arr = NULL;
	ps->size = ps->capacity = 0;
}

3.顺序表的插入

插入算法的思路:

  1. 如果插入位置不合理,error;
  2. 如果顺序表的长度大于等于数组的长度,则error或动态扩容;
  3. 从最后一个元素开始向前遍历到第 x 个位置,分别将他们都向后移动一个位置;
  4. 将要插入的数据元素插入到位置 x 处;
  5. 表长 + 1;
    在这里插入图片描述

在指定位置插入

void SLInsert(SL* ps, int pos, SLDataType X)
{
	assert(ps);
	//前=:头插
	//后=:尾插
	assert(pos >= 0 && pos <= ps->size);
	//插入数据,空间够不够;
	CheckSLCapacity(ps);
	//让pos及以后的数据整体往后挪动一位
	for (int i = ps->size; i > pos; i--)
	{
		ps->arr[i] = ps->arr[i - 1];
	}
	ps->arr[pos] = X;
	ps->size++;
}

测试一下
在这里插入图片描述

在插入之前也要先判断空间容量够不够,不够的话要申请空间
我们在里把这个代码单独封装成一个函数

void CheckSLCapacity(SL* ps)
{
	//空间够不够,申请空间
	if (ps->size == ps->capacity)
	{
		//空间不够,增加空间 
		//连续的位置(顺序表的长度)足够直接增容 
		//连续的位置不够:那就realloc 
		//1)找到新的连续的空间
		//2)拷贝旧的数据
		//3)释放旧空间
		//void* realloc(void* ptr, size_t size)(size代表的是字节)
		int newCapacity = ps->capacity == 0 ? 4 : ps->capacity * 2;
		SLDataType* tmp = (SLDataType*)realloc(ps->arr, newCapacity * sizeof(SLDataType));
		if (tmp == NULL)
		{
			perror("realloc fail");
			exit(1);//退出程序
		}
		//空间申请成功
		ps->arr = tmp;
		ps->capacity = newCapacity;
	}
}

尾插(SLPushBack)

尾插就是判断空间够不够,够的话直接插入,不够的话先扩容再插入;
尾插的话就不用考虑在指定的位置插入数据后,把后面的元素依次先后移动一位
尾插的时间复杂度为 O(1)

在这里插入图片描述

//尾插
void SLPushBack(SL* ps, SLDataType X)
{
	assert(ps!= NULL);//ps不能为空指针,不能对NULL解引用
	CheckSLCapacity(ps);
	//ps->arr[ps->size] = X;
	//++ps = size;
	ps->arr[ps->size++] = X;
}

在这里插入图片描述

头插(SLPushFront)

头插的时间复杂度为 O(N)
在这里插入图片描述

void SLPushFront(SL* ps, SLDataType Y)
{
	assert(ps);//不能给顺序表传一个空地址
	CheckSLCapacity(ps);//检查空间是否充足,不够扩容
	for (int i = ps->size; i > 0; i--)//向后遍历数组
	{
		ps->arr[i] = ps->arr[i - 1];
	
	ps->arr[0] = Y;//插入数据
	ps->size++;//表长+1
}

在这里插入图片描述

4.顺序表的删除

删除算法的思路:

如果删除位置不合理,error;
取出删除元素;
从删除元素位置开始遍历到最后一个元素位置,分别将它们都向前移动一个位置
表长 - 1

在指定位置删除

测试一下
在这里插入图片描述

//删除指定位置的数据
void SLErase(SL* ps, int pos)
{
	assert(ps);
	assert(pos >= 0 && pos < ps->size);
	for (int i = pos; i < ps->size - 1; i++)
	{
		ps->arr[i] = ps->arr[i + 1];//arr[size-2] = arr[size-1]
	}
	ps->size--;
}

尾删(SLPopBack)

void SLPopBack(SL* ps)
{
	assert(ps);
	assert(ps->size);
	//顺序表不为空
	--ps->size;
}

头删(SLPopFront)

//头删 
void SLPopFront(SL* ps)
{
	assert(ps);
	assert(ps->size);
	//数据整体往前挪动一位
	for (int i = 0; i < ps->size - 1; i++)
	{
		ps->arr[i] = ps->arr[i + 1];
	}
	ps->size--;
}

5.顺序表的查找

int SLFind(SL* ps, SLDataType X)
{
	assert(ps);
	for (int i = 0; i < ps->size; i++)
	{
		if (ps->arr[i] == X)
		{
			//找到了返回下标
			return i;
		}
	}
	return -1;
}

6.顺序表的输出

顺序表的输出是for循环遍历各元素并输出各元素的值

void SLPrint(SL s)
{
	if (s.size == 0)
	{
		printf("顺序表为空!");
		return 0;
	}
	printf("顺序表为: ");
	for (int i = 0; i < s.size; i++)
	{
		printf("%d ", s.arr[i]);
	}
	printf("\n");
}

在这里插入图片描述

7.顺序表的销毁

//顺序表的销毁
void SLDestroy(SL* ps)
{
	if (ps->arr)//等价于if(ps->arr != NULL)
	{
		free(ps->arr);//释放申请的空间
	}
	ps->arr = NULL;
	ps->size = ps->capacity == 0;
}

代码Demo

SeqList.h(函数声明)

#pragma once
#include<stdio.h>
#include<stdlib.h>
#include<assert.h>

#define N 10
typedef int SLDataType;

//静态顺序表
//struct SeqList
//{
//	SLDataType arr[N];
//	int size;//有效数据个数
//};

//typedef struct SeqList SL;两种都可以
//动态顺序表
typedef struct SeqList
{
	SLDataType* arr;
	int size;
	SLDataType capacity;
}SL;

//顺序表的创建
void SLInit(SL* ps);
//顺序表的销毁
void SLDestroy(SL* ps);
//顺序表的打印输出
void SLPrint(SL s);
//尾插
void SLPushBack(SL* ps, SLDataType X);
//头插
void SLPushFront(SL* ps, SLDataType Y);
//检查空间
void CheckSLCapacity(SL* ps);
//在指定位置插入
void SLInsert(SL* ps, int pos, SLDataType x);
//在指定位置删除
void SLErase(SL* ps, int pos );
void SLPopBack(SL* ps);
void SLPopFront(SL* ps);
//查找
int SLFind(SL* ps, SLDataType x);

test.c(测试)

#include"SeqList.h"

void Test()
{
	SL s1;//结构体变量
	//初始化
	SLInit(&s1);//实参,传地址,形参的改变会影响实参
	//尾插
	SLPushBack(&s1, 1);
	SLPushBack(&s1, 2);
	SLPushBack(&s1, 3);
	SLPushBack(&s1, 4);
	SLPrint(s1);
	//头插
	SLPushFront(&s1, 5);
	SLPushFront(&s1, 6);
	SLPrint(s1);
	测试指定位置插入数据
	SLInsert(&s1, 0, 99);
	//SLInsert(&s1, s1.size, 99);
	SLPrint(s1);
	//测试指定位置删除
	SLErase(&s1,0);
	SLPrint(s1);
	//尾删
	SLPopBack(&s1);
	SLPrint(s1);
	//头删
	SLPopFront(&s1);
	SLPrint(s1);

	int find = SLFind(&s1, 4);
	if (find < 0)
	{
		printf("没有找到! \n");
	}
	else {
		printf("找到了,下标为%d\n", find);
	}
	SLDestroy(&s1);
}
int main()
{
	Test();
	return 0;
}

SeqList.c(函数的实现过程)

#define _CRT_SECURE_NO_WARNINGS 1
#include"SeqList.h"

//顺序表的创建
void SLInit(SL* ps)//形参
{
	ps->arr = NULL;
	ps->size = ps->capacity = 0;
}
//顺序表的销毁
void SLDestroy(SL* ps)
{
	if (ps->arr)//等价于if(ps->arr != NULL)
	{
		free(ps->arr);
	}
	ps->arr = NULL;
	ps->size = ps->capacity == 0;
}
void CheckSLCapacity(SL* ps)
{
	//空间够不够,申请空间
	if (ps->size == ps->capacity)
	{
		//空间不够,增加空间 2n
		//连续的位置足够直接增容 
		//连续的位置不够:
		/*1)找到新的连续的空间
		2)拷贝旧的数据
		3)释放旧空间*/
		//void* realloc(void* ptr, size_t size)(size代表的是字节)
		int newCapacity = ps->capacity == 0 ? 4 : ps->capacity * 2;
		SLDataType* tmp = (SLDataType*)realloc(ps->arr, newCapacity * sizeof(SLDataType));
		if (tmp == NULL)
		{
			perror("realloc fail");
			exit(1);
		}
		ps->arr = tmp;
		ps->capacity = newCapacity;
	}
}
//尾插
void SLPushBack(SL* ps, SLDataType X)
{
	//if (ps == NULL)
	//{
	//	return;
	//}//温柔的方式
	assert(ps != NULL);//粗暴
	//为真-通过//为假-报错
	CheckSLCapacity(ps);
	//ps->arr[ps->size] = X;
	//++ps = size;
	ps->arr[ps->size++] = X;//后置++,先使用再++
}
//头插
void SLPushFront(SL* ps, SLDataType Y)
{
	assert(ps);
	CheckSLCapacity(ps);
	for (int i = ps->size; i > 0; i--)
	{
		ps->arr[i] = ps->arr[i - 1];
	}
	ps->arr[0] = Y;
	ps->size++;
}
//顺序表的输出
void SLPrint(SL s)
{
	if (s.size == 0)
	{
		printf("顺序表为空!");
		return 0;
	}
	printf("顺序表为: ");
	for (int i = 0; i < s.size; i++)
	{
		printf("%d ", s.arr[i]);
	}
	printf("\n");
}
//尾删
void SLPopBack(SL* ps)
{
	assert(ps);
	assert(ps->size );//顺序表不能为空
	--ps->size;
}
//头删 
void SLPopFront(SL* ps)
{
	assert(ps);
	assert(ps->size);
	//下标为0以后的数据整体往前挪动一位
	for (int i = 0; i < ps->size - 1; i++)
	{
		ps->arr[i] = ps->arr[i + 1];
	}
	ps->size--;
}
//在指定位置插入数据
void SLInsert(SL* ps, int pos, SLDataType X)
{
	assert(ps);
	//前=:头插
	//后=:尾插
	assert(pos >= 0 && pos <= ps->size);
	//插入数据,空间够不够;
	CheckSLCapacity(ps);
	//让pos及以后的数据整体往后挪动一位
	for (int i = ps->size; i > pos; i--)
	{
		ps->arr[i] = ps->arr[i - 1];
	}
	ps->arr[pos] = X;
	ps->size++;
}
//删除指定位置的数据
void SLErase(SL* ps, int pos)
{
	assert(ps);
	assert(pos >= 0 && pos < ps->size);
	for (int i = pos; i < ps->size - 1; i++)
	{
		ps->arr[i] = ps->arr[i + 1];//arr[size-2] = arr[size-1]
	}
	ps->size--;
}
//查找数据
int SLFind(SL* ps, SLDataType X)
{
	assert(ps);
	for (int i = 0; i < ps->size; i++)
	{
		if (ps->arr[i] == X)
		{
			//找到了返回下标
			return i;
		}
	}
	return -1;
}

总结

本文章只是个人的一些见解,如有错误请大家多多指正.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值