其他分享
首页 > 其他分享> > 顺序表

顺序表

作者:互联网

一、算法思想

二、代码实现

1、结构体定义

typedef struct
{
	int data[maxSize];
	int length;
}Sqlist;

2、操作

(1)查找元素


(2)插入元素


(3)删除元素


三、时间复杂度分析

标签:typedef,顺序,struct,int,复杂度,元素,maxSize
来源: https://www.cnblogs.com/unravel-CAT/p/16609100.html