当前位置:网站首页>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
将常用的操作/运算封装成函数,避免重复工作,降低出错的风险
边栏推荐
- leetcode二叉搜索树与双向链表
- 日期及时间处理包 Carbon 在 Laravel 中的简单使用[通俗易懂]
- 如何从800万数据中快速捞出自己想要的数据?
- Laravel DB批量更新的方法
- 听音识情绪 | 程序员手把手教你搭建神经网络,更快get女朋友情绪,求生欲max!
- hdu 2094 产生冠军(STL map || 拓扑 || STL set)
- 如何在WPF中设置Grid ColumnDefinitions的样式
- matlab 神经网络 ANN 分类
- AttributeError: module 'click' has no attribute 'get_os_args'
- [] free column Android run Android, her - as command of safety
猜你喜欢
随机推荐
visual studio 2022调试技巧介绍
技术分享 | 接口自动化测试如何处理 Header cookie
URL Protocol 网页打开应用程序
Reverse Analysis of Unknown Cryptographic Protocol Based on Network Data Flow
一千以内的水仙花数
pytest框架之mark标记功能详细介绍
力扣15-三数之和——HashSet&双指针法
面试官:Redis 大 key 要如何处理?
启动 CM agent 报错——ImportError: libssl.so.10: cannot open shared object file: No such file or directory
[] free column Android dynamic debugging GDB APP of safety
基于网络数据流的未知密码协议逆向分析
【图文并茂】如何进行Win7系统的重装
Prometheus Operator 自定义监控添加redis explorer
How are data integration APIs key to enterprise digital transformation?
hdu 2094 产生冠军(STL map || 拓扑 || STL set)
阿里二面:没有 accept,能建立 TCP 连接吗?
C语言之实现倒置字符串的两种方法
大健康产业商业供应链管理系统数字化提升产业链运作效率推动供应链标准化建设
NetCore路由的Endpoint模式
这年头还不来尝试线稿图视频??









