当前位置:网站首页>(1), the sequential storage structure of linear table chain storage structure
(1), the sequential storage structure of linear table chain storage structure
2022-08-04 17:02:00 【Little Monk Hanshui Temple Wuxin】
一、前言
This book combines Cheng Jie's《大话数据结构》learning from a book.I have forgotten a lot of the data structure knowledge I learned before,Reread it recently.No theoretical knowledge is involved,Mainly code implementation.
二、线性表
线性表:0个或多个数据元素的有限序列.
线性表的抽象数据类型:顺序存储结构、链式存储结构
A sequential storage structure for a linear list,指的是用一段地址连续的存储单元依次存储线性表的数据元素.
三、线性表的顺序存储结构
线性表的顺序存储代码:
#define MAXSIZE 20
typedef char ElemType;
typedef struct{
ElemType data[MAXSIZE];
int length;
}SqList;
#define OK 1
#define ERROR 0
typedef int Status;
//获取元素
Status GetElem(SqList L, int i, ElemType *e)
{
if(L.length <= 0)
return ERROR;
if((i <= 0) || (i > L.length))
return ERROR;
*e = L.data[i-1];
return OK;
}
//插入
Status ListInsert(SqList *L, int i; ElemType e)
{
int k;
if(!L || (i <= 0) || (i>L->length +1))
return ERROR;
if(L->length == MAXSIZE)
return ERROR;
for(k = L->length - 1; k >= i-1; k--)
{
L->data[k+1] = L->data[k];
}
L->data[i-1] = e;
L->length++;
return OK;
}
//删除
Status ListDelete(SqList *L, int i, ElemType *e)
{
int k;
if(!L || (i<1) || (i>L->length))
{
return ERROR;
}
*e = L->data[i-1];
for(k = i-1; k < L->length - 1; k++)
{
L->data[k] = L->data[k+1];
}
L->length--;
return OK;
}
四、线性表的链式存储结构
#define OK 1
#define ERROR 0
typedef int ElemType;
typedef struct Node{
ElemType data;
struct Node *next;
}Node;
typedef struct Node *LinkList;
#include <stdio.h>
#include "linklist.h"
//获取第iThe data field value of a node
Status GetElem(LinkList L, int i, ElemType *e)
{
int j;
LinkList p;
p = L->next;
if(i<1)
return ERROR;
j = 1;
while(p && j <i)
{
p = p->next;
j++;
}
if(!p)
return ERROR;
*e = p->data;
return OK;
}
Status ListInsert(LinkList *L, int i, ElemType e)
{
int j = 1;
LinkList p, s;
p = *L;
if(!L || i < 0)
return ERROR;
while(p || j < i)
{
p = p->next;
j++;
}
if(!p)
return ERROR;
s = (LinkList)malloc(sizeof(Node))
s->data = e;
s->next = p->next;
p-next = s;
return OK;
}
Status ListDelete(LinkList *L, int i, ElemType *e)
{
int j = 1;
LinkList p, q;
p = *L;
if(!L || i < 1)
return ERROR;
while(p->next || j < i)
{
p = p->next;
j++;
}
if(!p->next)
return ERROR;
q = p->next;
p->nex = q->next;
*e = q->data;
free(q);
return OK;
}
边栏推荐
- 机器学习入门到大神专栏总览
- jMeter Transaction Controller 学习笔记
- 北京海淀6家必胜客被暂停外卖订餐 存在食品安全问题
- SAP 电商云 Spartacus UI SSR 单元测试里的 callFake
- 咪咕MGV2000KL南传_S905L3B_MT7668线刷固件包
- LeetCode 0168. Excel表列名称
- "Distributed cloud best practices" BBS, on August 11, shenzhen
- 为什么买域名必须实名认证?这样做什么原因?
- 【LeetCode每日一题】——374.猜数字大小
- 麒麟信安石勇博士荣获openEuler社区年度开源贡献之星
猜你喜欢
Minecraft 我的世界 .minecraft下的各个文件夹的用处
Heilongjiang Mobile New Magic Hundred Box M411A_2+8_S905L3A_wire brush firmware package
谷粒商城笔记
浙江移动咪咕MGV2000-K4_ZJ_S905l2_7661_线刷固件包
吃透Chisel语言.32.Chisel进阶之硬件生成器(一)——Chisel中的参数化
餐饮供应链管理系统
广东移动魔百盒M411A _905L3_线刷固件包
Analysis of the gourd baby
智慧场馆的无人值守怎么做?
Go语言gin框架返回json格式里,怎么把某个int属性转成string返回?
随机推荐
乐享购(分享购)的模式:优势、亮点、收益
Mobile Hisense IP102H_905L3-B_wire brush firmware package
跨域传递数据(iframe)
xgboost模块param中的一些错误
Json的FastJson与Jackson
咪咕MGV2000KL南传_S905L3B_MT7668线刷固件包
Mobile BesTV_R3300-L_S905L_8189_wire brush firmware package
服装店如何利用好积分?
【Gazebo入门教程】第二讲 模型库导入与可视化机器人建模(模型编辑器)
适配器模式
mysql学习笔记——利用动态SQL和Session变量实现一个公式或者计算器
ES中同时使用should和must导致只有must生效解决方案
gcc7.5.0编译ceres-solver报错‘is_trivially_default_constructible’ is not a member of ‘std’
代码重构:面向单元测试
黑龙江移动新魔百盒M411A_2+8_S905L3A_线刷固件包
学习探索-网站中引入百度统计
机器学习(十八):随机搜索和XGBoost
广东移动魔百盒M411A _905L3_线刷固件包
机器学习(十六):主成成分分析(PCA)
【LeetCode每日一题】——374.猜数字大小