当前位置:网站首页>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
将常用的操作/运算封装成函数,避免重复工作,降低出错的风险
边栏推荐
猜你喜欢

字节二面问的MySQL,差点没答好

What are the benefits of enterprise data integration?How do different industries solve the problem of data access?

这年头还不来尝试线稿图视频??

buuctf(探险2)

DP-Differential Privacy概念介绍
![[Free column] APK dynamic reverse application of Android security [Three Smali injection methods]](/img/11/39a25d86c9486bb5201659bbbeaa36.png)
[Free column] APK dynamic reverse application of Android security [Three Smali injection methods]

一千以内的水仙花数

倍福CX5120实现温度控制例程详细解析

访问控制知识

【kali-权限提升】(4.2.6)社会工程学工具包(中):中间人攻击工具Ettercap
随机推荐
MySQL Notes-06 Basic SQL Operations
AttributeError: module ‘click‘ has no attribute ‘get_os_args‘
解决执行Command报错executable file not found in $PATH
纸业供应链协同管理系统:重构纸业智慧供应网络,支撑企业数字化转型升级
Abbkine TraKine Pro 活细胞微管染色试剂盒重要特色
hdu 2647 Reward(拓扑排序)
Redis 大的情况下,key 要如何处理?
移动端,PC端,微信等常用平台和浏览器判断
[Deep learning] pix2pix GAN theory and code implementation
毕昇编译器优化:Lazy Code Motion
线性表的定义和基本操作
力扣15-三数之和——HashSet&双指针法
ClickHouse一种高性能分布式join查询模型(Colocate Join)
小满nestjs(第六章 nestjs cli 常用命令)
【高效工具】远程控制软件 ToDesk(收藏夹)
华为云创新中心助力启泰智能 补齐中小模具企业数字化能力短板
prometheus学习3Grafana部署及基本使用
Prometheus Operator 通过additional 添加target
字节二面问的MySQL,差点没答好
Win11找不到Internet Explore怎么办