当前位置:网站首页>Definition and Basic Operations of Linear Tables
Definition and Basic Operations of Linear Tables
2022-08-09 22:07:00 【never stop..】
线性表的定义:
线性表是具有相同数据类型[Each data element occupies the same space]的n(n>=0)个数据元素的有限序列[The elements in the table must be finite,and arranged in a certain order],其中n为表长,当n=0时线性表是一个空表,若用L命名线性表,则一般表示为:L=(a1,a2…ai,ai+1…an)

注:
ai是线性表中的‘第i个’元素线性表中的位序[位序是从1开始,Array subscripts are zero-based]
a1是表头元素,an是表尾元素
除第一个元素外,每个元素有且仅有一个直接前驱,除最后一个元素外,每个元素有且仅有一个直接后继.
线性表的基本操作:
lnitList(&L):初始化表.构造一个空的线性表L,分配内存空间.
DestroyList(&L):销毁操作.销毁线性表,并释放线性表L所占用的内存空间.
Listlnsert(&L,i,e):插入操作.在表L中第i个位置上,插入元素e.
ListDelete(&L,i,&e):删除操作.删除表中第i个位置上的元素,并用e返回删除元素的值.
LocateElem(L,e):按值查找操作.在表L中查找具有给定关键字值的元素.
GetElem(L,i):按位查找操作.获取表L中第i个位置元素的值
其他常见操作:
length(L):求表长.返回线性表L的长度,即L中数据元素的个数.
PrintList(L):输出操作.Output the linear table in sequential orderL的所有元素的值.
Empty(L):判空操作.若L为空表,则返回True,否则返回False.
注:
Function name and parameter form,Nomenclature can be changed,But the naming must be readable.
什么时候要传入参数的引用“&”?-----对参数的修改结果需要“传递回来”
举例:
#include<stdio.h>
void test(int x)
{
x = 1024;
printf("test函数内部 x=%d\n", x);
}
int main()
{
int x = 1;
printf("调用test前 x=%d\n", x);
test(x);
printf("调用test后 x=%d\n", x);
return 0;
}
通过输出结果,We'll find out even when calledtest函数,但xThe value remains unchanged,The reason is in the process of function call,我们传递给test函数的是x的值,在testThe value is modified inside the function,This operation is onlytest函数内部生效,But in fact the data is not really modified,So returned to the main functionxThe value is still the value before the modification,有点类似于CPass-by-value and pass-by-address issues in the pointer part of the language.
To achieve cross-function modification,就要使用"&"引用
修改如下:
#include<stdio.h>
void test(int *x)
{
*x = 1024;
printf("test函数内部 x=%d\n", *x);
}
int main()
{
int x = 1;
printf("调用test前 x=%d\n", x);
test(&x);
printf("调用test后 x=%d\n", x);
return 0;
}
输出如下:
The reason for implementing the operation on the data structure:
团队合作编程,The data structures we define are meant to be more than just usable
将常用的操作/运算封装成函数,避免重复工作,降低出错的风险
边栏推荐
- Abbkine TraKine Pro 活细胞微管染色试剂盒重要特色
- Toronto Research Chemicals加米霉素-d4说明书
- 面试官:MySQL 中 update 更新,数据与原数据相同时会执行吗?大部分人答不上来!
- DSPE-PEG-PDP,DSPE-PEG-OPSS,磷脂-聚乙二醇-巯基吡啶可减少肽的免疫原性
- mysql 重复数据 分组 多条最新的记录
- 技术分享 | 接口自动化测试如何处理 Header cookie
- 【kali-权限提升】(4.2.7)社会工程学工具包:权限维持创建后门、清除痕迹
- Reverse Analysis of Unknown Cryptographic Protocol Based on Network Data Flow
- Win11找不到Internet Explore怎么办
- What are the benefits of enterprise data integration?How do different industries solve the problem of data access?
猜你喜欢
随机推荐
C语言之实现倒置字符串的两种方法
下秒数据:湖仓一体带来的现代数据堆栈变革开始了
『百日百题 · 基础篇』备战面试,坚持刷题 第五话——循环语句(2)!
启动 CM agent 报错——ImportError: libssl.so.10: cannot open shared object file: No such file or directory
shell之变量详解,让你秒懂!
加工制造业智慧采购系统解决方案:助力企业实现全流程采购一体化协同
【随笔】致19期的小伙伴们
安装多版本php(php5.6,php7.2)
IS31FL3737B general 12 x 12 LED drive 40 QFN I2C 42 ma
ebook download | "Business executives' IT strategy guide - why enterprises should implement DevOps"
Openharmony Lightweight System Experiment--GPIO Lighting
如何在WPF中设置Grid ColumnDefinitions的样式
IS31FL3737B 通用12×12 LED驱动器 I2C 42mA 40QFN
新出现的去中心化科学能够为科学领域带来什么?
【高效工具】远程控制软件 ToDesk(收藏夹)
Win11搜索不到文件的解决方法
漏洞复现-redis未授权getshell
倍福CX5120实现温度控制例程详细解析
【IoT毕设】STM32与机智云自助开发平台的宠物智能喂养系统
典型的数据仓库模型实施过程详解









