顺序表(静态版本)-----动态版本的基础
创始人
2024-02-16 08:30:15
0

今天,我带来顺序表的静态版本。



目录

    • 顺序表(静态版本)的三个文档
    • 初始化函数
    • 打印函数
    • 查找函数
    • 中间插入数据函数和中间删除数据函数
    • 头插函数和尾插函数
    • 尾插和尾删函数
    • 函数的声明和结构体的定义
    • 菜单和主函数
    • SeqList.h文档的代码
    • SeqList.c文档的代码
    • test.c文档的代码



顺序表(静态版本)的三个文档

SeqList.h--------头文件的引用和函数的声明
SeqList.c--------函数的定义
test.c--------顺序表的检验



初始化函数

//初始化函数
void InitSeqList(SL* ps)
{assert(ps != NULL);memset(ps->data,0,MAX * sizeof(SeqListType));ps->size = 0;
}


打印函数

//打印函数
void Print(SL* ps)
{int i = 0;assert(ps != NULL);for(i = 0; i < ps->size; i++){printf("%d ",ps->data[i]);}printf("\n");
}


查找函数

//查找函数
int Find(SL* ps,SeqListType x,int pos)
{int i = 0;assert(ps != NULL);assert(pos >= 0);assert(pos < ps->size);for(i = pos; i < ps->size; i++){if(ps->data[i] == x){return i;}}return -1;
}

中间插入数据函数和中间删除数据函数

//中间插入数据的函数
void SeqListInsert(SL* ps,int pos,SeqListType x)
{int end = ps->size - 1;assert(ps != NULL);assert(pos >= 0);assert(pos <= ps->size);if(ps->size == MAX){printf("内存已满,存入数据失败\n");return;}while(pos <= end){ps->data[end + 1] = ps->data[end];end--;}ps->data[pos] = x;ps->size++;
}//中间删除数据函数
void SeqListErase(SL* ps,int pos)
{int begin = pos + 1;assert(ps != NULL);assert(pos >= 0);assert(pos < ps->size);while(begin < ps->size){ps->data[begin - 1] = ps->data[begin];begin++;}ps->size--;
}


头插函数和尾插函数

//头插函数
void SLPushFront(SL* ps,SeqListType x)
{assert(ps != NULL);SeqListInsert(ps,0,x);
}//头删函数
void SLPopFront(SL* ps)
{assert(ps != NULL);SeqListErase(ps,0);
}


尾插和尾删函数

//尾插函数
void SLPushBack(SL* ps,SeqListType x)
{assert(ps != NULL);SeqListInsert(ps,ps->size,x);
}//尾删函数
void SLPopBack(SL* ps)
{assert(ps != NULL);SeqListErase(ps,ps->size-1);
}


函数的声明和结构体的定义

typedef int SeqListType;
typedef struct SeqList
{SeqListType data[MAX];int size;
}SL;//初始化函数
void InitSeqList(SL* ps);//打印函数
void Print(SL* ps);//查找函数
int Find(SL* ps,int pos,SeqListType x);//中间插入数据的函数
void SeqListInsert(SL* ps,int pos,SeqListType x);//中间删除数据函数
void SeqListErase(SL* ps,int pos);//头插函数
void SLPushFront(SL* ps,SeqListType x);//头删函数
void SLPopFront(SL* ps);//尾插函数
void SLPushBack(SL* ps,SeqListType x);//尾删函数
void SLPopBack(SL* ps);


菜单和主函数

#include "SeqList.h"void menu()
{printf("***************************************************\n");printf("**** 1.尾插                     2.尾删         ****\n");printf("**** 3.头插                     4.头删         ****\n");printf("**** 5.中间插入数据             6.中间删除数据 ****\n");printf("**** 7.查找数据                 8.打印数据     ****\n");printf("**** 0.退出                                    ****\n");printf("***************************************************\n");
}
int main()
{int input = 0;SeqListType number = 0;int address = 0;int location = 0;SL SeqList;InitSeqList(&SeqList);do{menu();printf("请选择:>");scanf("%d",&input);switch(input){case 1:printf("请输入你要尾插的数据:>");scanf("%d",&number);SLPushBack(&SeqList,number);break;case 2:SLPopBack(&SeqList);printf("尾删成功\n");break;case 3:printf("请输入你要头插的数据:>");scanf("%d",&number);SLPushFront(&SeqList,number);break;case 4:SLPopFront(&SeqList);break;case 5:printf("请输入你要在中间插入的数据:>");scanf("%d",&number);printf("请输入你要插入的位置:>");scanf("%d",&address);SeqListInsert(&SeqList,address-1,number);break;case 6:printf("请输入你要删除的的数据的位置:>");scanf("%d",&address);SeqListErase(&SeqList,address-1);break;case 7:printf("请输入你要查找的数据:>");scanf("%d",&number);printf("请输入你要从哪个位置开始查找:>");scanf("%d",&address);location = Find(&SeqList,number,address);if(location == -1){printf("找不到\n");}else{printf("该数字的位置是%d\n",location+1);}break;case 8:Print(&SeqList);break;case 0:printf("退出顺序表\n");break;default:printf("选择错误,请重新选择\n");break;}}while(input);
}


SeqList.h文档的代码

#include
#include
#include
#include#define MAX 100typedef int SeqListType;
typedef struct SeqList
{SeqListType data[MAX];int size;
}SL;//初始化函数
void InitSeqList(SL* ps);//打印函数
void Print(SL* ps);//查找函数
int Find(SL* ps,int pos,SeqListType x);//中间插入数据的函数
void SeqListInsert(SL* ps,int pos,SeqListType x);//中间删除数据函数
void SeqListErase(SL* ps,int pos);//头插函数
void SLPushFront(SL* ps,SeqListType x);//头删函数
void SLPopFront(SL* ps);//尾插函数
void SLPushBack(SL* ps,SeqListType x);//尾删函数
void SLPopBack(SL* ps);


SeqList.c文档的代码

#include"SeqList.h"//初始化函数
void InitSeqList(SL* ps)
{assert(ps != NULL);memset(ps->data,0,MAX * sizeof(SeqListType));ps->size = 0;
}//打印函数
void Print(SL* ps)
{int i = 0;assert(ps != NULL);for(i = 0; i < ps->size; i++){printf("%d ",ps->data[i]);}printf("\n");
}//查找函数
int Find(SL* ps,SeqListType x,int pos)
{int i = 0;assert(ps != NULL);assert(pos >= 0);assert(pos < ps->size);for(i = pos; i < ps->size; i++){if(ps->data[i] == x){return i;}}return -1;
}//中间插入数据的函数
void SeqListInsert(SL* ps,int pos,SeqListType x)
{int end = ps->size - 1;assert(ps != NULL);assert(pos >= 0);assert(pos <= ps->size);if(ps->size == MAX){printf("内存已满,存入数据失败\n");return;}while(pos <= end){ps->data[end + 1] = ps->data[end];end--;}ps->data[pos] = x;ps->size++;
}//中间删除数据函数
void SeqListErase(SL* ps,int pos)
{int begin = pos + 1;assert(ps != NULL);assert(pos >= 0);assert(pos < ps->size);while(begin < ps->size){ps->data[begin - 1] = ps->data[begin];begin++;}ps->size--;
}//头插函数
void SLPushFront(SL* ps,SeqListType x)
{assert(ps != NULL);SeqListInsert(ps,0,x);
}//头删函数
void SLPopFront(SL* ps)
{assert(ps != NULL);SeqListErase(ps,0);
}//尾插函数
void SLPushBack(SL* ps,SeqListType x)
{assert(ps != NULL);SeqListInsert(ps,ps->size,x);
}//尾删函数
void SLPopBack(SL* ps)
{assert(ps != NULL);SeqListErase(ps,ps->size-1);
}

test.c文档的代码

#include "SeqList.h"void menu()
{printf("***************************************************\n");printf("**** 1.尾插                     2.尾删         ****\n");printf("**** 3.头插                     4.头删         ****\n");printf("**** 5.中间插入数据             6.中间删除数据 ****\n");printf("**** 7.查找数据                 8.打印数据     ****\n");printf("**** 0.退出                                    ****\n");printf("***************************************************\n");
}
int main()
{int input = 0;SeqListType number = 0;int address = 0;int location = 0;SL SeqList;InitSeqList(&SeqList);do{menu();printf("请选择:>");scanf("%d",&input);switch(input){case 1:printf("请输入你要尾插的数据:>");scanf("%d",&number);SLPushBack(&SeqList,number);break;case 2:SLPopBack(&SeqList);printf("尾删成功\n");break;case 3:printf("请输入你要头插的数据:>");scanf("%d",&number);SLPushFront(&SeqList,number);break;case 4:SLPopFront(&SeqList);break;case 5:printf("请输入你要在中间插入的数据:>");scanf("%d",&number);printf("请输入你要插入的位置:>");scanf("%d",&address);SeqListInsert(&SeqList,address-1,number);break;case 6:printf("请输入你要删除的的数据的位置:>");scanf("%d",&address);SeqListErase(&SeqList,address-1);break;case 7:printf("请输入你要查找的数据:>");scanf("%d",&number);printf("请输入你要从哪个位置开始查找:>");scanf("%d",&address);location = Find(&SeqList,number,address);if(location == -1){printf("找不到\n");}else{printf("该数字的位置是%d\n",location+1);}break;case 8:Print(&SeqList);break;case 0:printf("退出顺序表\n");break;default:printf("选择错误,请重新选择\n");break;}}while(input);
}

今天,顺序表的静态版本就讲到这里,关注点一点,下期更精彩。

相关内容

热门资讯

喜欢穿一身黑的男生性格(喜欢穿... 今天百科达人给各位分享喜欢穿一身黑的男生性格的知识,其中也会对喜欢穿一身黑衣服的男人人好相处吗进行解...
发春是什么意思(思春和发春是什... 本篇文章极速百科给大家谈谈发春是什么意思,以及思春和发春是什么意思对应的知识点,希望对各位有所帮助,...
网络用语zl是什么意思(zl是... 今天给各位分享网络用语zl是什么意思的知识,其中也会对zl是啥意思是什么网络用语进行解释,如果能碰巧...
为什么酷狗音乐自己唱的歌不能下... 本篇文章极速百科小编给大家谈谈为什么酷狗音乐自己唱的歌不能下载到本地?,以及为什么酷狗下载的歌曲不是...
家里可以做假山养金鱼吗(假山能... 今天百科达人给各位分享家里可以做假山养金鱼吗的知识,其中也会对假山能放鱼缸里吗进行解释,如果能碰巧解...
华为下载未安装的文件去哪找(华... 今天百科达人给各位分享华为下载未安装的文件去哪找的知识,其中也会对华为下载未安装的文件去哪找到进行解...
四分五裂是什么生肖什么动物(四... 本篇文章极速百科小编给大家谈谈四分五裂是什么生肖什么动物,以及四分五裂打一生肖是什么对应的知识点,希...
怎么往应用助手里添加应用(应用... 今天百科达人给各位分享怎么往应用助手里添加应用的知识,其中也会对应用助手怎么添加微信进行解释,如果能...
苏州离哪个飞机场近(苏州离哪个... 本篇文章极速百科小编给大家谈谈苏州离哪个飞机场近,以及苏州离哪个飞机场近点对应的知识点,希望对各位有...
客厅放八骏马摆件可以吗(家里摆... 今天给各位分享客厅放八骏马摆件可以吗的知识,其中也会对家里摆八骏马摆件好吗进行解释,如果能碰巧解决你...