当前位置:   article > 正文

数据结构_第二关:线性表——顺序表的实现_本关任务: 你需要实现不同的插入操作: 在顺序线性表中下标为p位置、p位置之前、p

本关任务: 你需要实现不同的插入操作: 在顺序线性表中下标为p位置、p位置之前、p

目录

目录

1.什么是线性表:

2.顺序表

2.1概念及结构

1.静态顺序表

2.动态顺序表:

2.2 接口实现

2.3接口实现:

3 .顺序表相关面试题

3.3.1:

3.3.2:

3.3.3:

4 .顺序表自身性能的问题

原代码:๑乛v乛๑


1.什么是线性表:

线性表(linear list)是n个具有相同特性的数据元素的有限序列。 线性表是一种在实际中广泛使 用的数据结构,常见的线性表:顺序表、链表、栈、队列、字符串...

线性表在逻辑上是线性结构,也就说是连续的一条直线。但是在物理结构上并不一定是连续的, 线性表在物理上存储时,通常以数组和链式结构的形式存储

2.顺序表

2.1概念及结构

顺序表是用一段物理地址连续的存储单元依次存储数据元素的线性结构,一般情况下采用数组存 储。

目标:在数组上完成数据的增删查改。

 顺序表一般分为静态顺序表动态顺序表

1.静态顺序表

  1. //静态顺序表
  2. #define MAX 10
  3. typedef int SLDataType;
  4. //给数据类型重命名,以后直接改这里就可以改变全部的数据类型
  5. typedef struct Seqlist
  6. {
  7. SLDataType arr[MAX];
  8. int size;//记录存储了多少个有效数据
  9. }sl;//重命名

2.动态顺序表:

  1. //动态顺序表
  2. typedef int SLDataType;
  3. typedef struct Seqlist
  4. {
  5. SLDataType *arr;
  6. int size;
  7. int capacity;//记录最大存储量
  8. }sl;

2.2 接口实现

静态顺序表只适用于确定知道需要存多少数据的场景。
静态顺序表的定长数组导致N定大了,空间开多了浪费,开少了不够用。
所以现实中基本都是使用动态顺序表,根据需要动态的分配空间大小,

这里博主就重点实现动态的顺序表了:
(两者差别不大,需要静态实现的,课参考动态实现来完成)

  1. //定义/声明:
  2. //动态顺序表
  3. typedef int SLDataType;
  4. typedef struct Seqlist
  5. {
  6. SLDataType* arr;
  7. int size;//记录存储了多少个有效数据
  8. int capacity;//记录最大存储量
  9. }SL;//重命名
  10. void SLInit(SL* ps);//初始化
  11. void SLDestroy(SL* ps);//销毁
  12. void SLprint(SL* ps);//打印
  13. void SLCheckCapacity(SL* ps);//查看容量
  14. void SLPushBack(SL* ps, int x);//尾插
  15. //将x插入尾部
  16. void SLPopBack(SL* ps);//尾删
  17. void SLPushFront(SL* ps, int x);//头插
  18. void SLPopFront(SL* ps);//头删
  19. void SLInsert(SL* ps, int pos, SLDataType x);//中间插入
  20. //在顺序表ps,下标为pos的位置,插入x
  21. void SLEarse(SL* ps, int pos);//中间删除
  22. //删除下表为pos的值
  23. int SLFind(SL* ps, SLDataType x);//查找特定值
  24. //返回顺序表ps中的值为x的下标
  25. void SLDelete(SL* ps, SLDataType x);//删除特定值

2.3接口实现:

统一放入了最后的原代码中,可供借鉴查找学习๑乛v乛๑

3 .顺序表相关面试题

1. 原地移除数组中所有的元素val,要求时间复杂度为O(N),空间复杂度为O(1)。

移除元素 - 力扣(LeetCode)

2. 删除排序数组中的重复项。

删除有序数组中的重复项 - 力扣(LeetCode)

3. 合并两个有序数组。

合并两个有序数组 - 力扣(LeetCode)

3.3.1:

思路一:查一次,删一次,
最容易想到的,时间复杂度为O(N^2),空间复杂度:O(1)

  1. int removeElement(int* nums, int numsSize, int val)
  2. {
  3. int n = 0;
  4. for (int i = 0;i < numsSize;i++)
  5. {
  6. if (nums[i] == val)
  7. {
  8. for (int j = i;j < numsSize - i+1;j++)
  9. {
  10. nums[j] = nums[j + 1];
  11. }
  12. numsSize--;
  13. }
  14. }
  15. return numsSize;
  16. }
  17. int main()
  18. {
  19. int arr[] = { 1,4,1,2,1 };
  20. int v = 0;
  21. scanf("%d", &v);
  22. int sz = sizeof(arr) / sizeof(arr[0]);
  23. int len = removeElement(arr, sz, v);
  24. for (int i = 0;i < len;i++)
  25. {
  26. printf("%d ", arr[i]);
  27. }
  28. return 0;
  29. }

思路二:建一个临时数组,利用双指针,以空间换时间
时间复杂度:O(N),空间复杂度:O(N)

就不写了,可以直接看思路三的代码

思路三:双指针,直接在原数组中操作

时间复杂度:O(N),空间复杂度:O(1)

  1. int removeElement(int* nums, int numsSize, int val)
  2. {
  3. int* b1 = nums;
  4. int* b2 = nums;
  5. int n = numsSize;
  6. for (int i = 0;i < numsSize;i++)
  7. {
  8. if (*b1 == val)
  9. {
  10. b1++;
  11. n--;
  12. }
  13. else
  14. {
  15. *b2++ = *b1++;
  16. }
  17. }
  18. return n;
  19. }
  20. int main()
  21. {
  22. int arr[] = { 5,4,1,2,1 };
  23. int v = 0;
  24. scanf("%d", &v);
  25. int sz = sizeof(arr) / sizeof(arr[0]);
  26. int len = removeElement(arr, sz, v);
  27. for (int i = 0;i < len;i++)
  28. {
  29. printf("%d ", arr[i]);
  30. }
  31. return 0;
  32. }

3.3.2:

方法:双指针:和上一题类似

 

  1. int removeDuplicates(int* nums, int numsSize)
  2. {
  3. int src = 0, dst = 0;
  4. while (src < numsSize)
  5. {
  6. if (nums[src] == nums[dst])
  7. {
  8. src++;
  9. }
  10. else
  11. {
  12. nums[++dst] = nums[src++];
  13. }
  14. }
  15. return dst + 1;
  16. }

3.3.3:

方法:双指针,一个指向nums1,一个指向nums2

  1. void merge(int* nums1, int nums1Size, int m, int* nums2, int nums2Size, int n)
  2. {
  3. int i1 = m - 1, i2 = n - 1;
  4. int j = m + n - 1;
  5. while (i1 >= 0 && i2 >= 0)
  6. {
  7. if (nums1[i1] > nums2[i2])
  8. {
  9. nums1[j--] = nums1[i1--];
  10. }
  11. else
  12. {
  13. nums1[j--] = nums2[i2--];
  14. }
  15. }
  16. while (i2 >= 0)//如果nums1先结束的,那么还要把nums2里面的值赋给nums1
  17. {
  18. nums1[j--] = nums2[i2--];
  19. }
  20. }

4 .顺序表自身性能的问题

问题:
1. 中间 / 头部的插入删除,时间复杂度为O(N)
2. 增容需要申请新空间,拷贝数据,释放旧空间。会有不小的消耗。
3. 增容一般是呈2倍的增长,势必会有一定的空间浪费。

    例如当前容量为100,满了以后增容到200,
    我们再继续插入了5个数据,后面没有数据插入了,那么就浪费了95个数据空间。


思考:如何解决以上问题呢?

在下一关博主会详细写出链表的结构来进行对比。

原代码:๑乛v乛๑

博主在vs2022下写的

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include<stdio.h>
  3. #include<stdlib.h>
  4. #include<assert.h>
  5. #include<Windows.h>
  6. //定义/声明:
  7. //动态顺序表
  8. typedef int SLDataType;
  9. typedef struct Seqlist
  10. {
  11. SLDataType* arr;
  12. int size;//记录存储了多少个有效数据
  13. int capacity;//记录最大存储量
  14. }SL;//重命名
  15. void SLInit(SL* ps);//初始化
  16. void SLDestroy(SL* ps);//销毁
  17. void SLprint(SL* ps);//打印
  18. void SLCheckCapacity(SL* ps);//查看容量
  19. void SLPushBack(SL* ps, int x);//尾插
  20. //将x插入尾部
  21. void SLPopBack(SL* ps);//尾删
  22. void SLPushFront(SL* ps, int x);//头插
  23. void SLPopFront(SL* ps);//头删
  24. void SLInsert(SL* ps, int pos, SLDataType x);//中间插入
  25. //在顺序表ps,下标为pos的位置,插入x
  26. void SLEarse(SL* ps, int pos);//中间删除
  27. //删除下表为pos的值
  28. int SLFind(SL* ps, SLDataType x);//查找特定值
  29. //返回顺序表ps中的值为x的下标
  30. void SLDelete(SL* ps, SLDataType x);//删除特定值
  31. //实现
  32. //初始化
  33. void SLInit(SL* ps)
  34. {
  35. assert(ps);
  36. ps->arr = NULL;
  37. ps->size = 0;
  38. ps->capacity = 0;
  39. }
  40. //销毁
  41. void SLDestroy(SL* ps)
  42. {
  43. assert(ps);
  44. free(ps->arr);
  45. ps->size = 0;
  46. ps->capacity = 0;
  47. }
  48. //打印
  49. void SLprint(SL* ps)
  50. {
  51. assert(ps);
  52. for (int i = 0;i < ps->size;i++)
  53. {
  54. printf("%d ", ps->arr[i]);
  55. }
  56. printf("\n");
  57. }
  58. //检查容量
  59. void SLCheckCapacity(SL* ps)
  60. {
  61. assert(ps);
  62. //扩容
  63. if (ps->size == ps->capacity)
  64. {
  65. int newCapacity = ps->capacity == 0 ? 4 : ps->capacity * 2;
  66. SLDataType* tmp = (SLDataType*)realloc(ps->arr, newCapacity * sizeof(SLDataType));
  67. //realloc在arr为空的时候,作用相当于malloc
  68. //realloc可能会扩容失败(失败是返回NULL),为了防止原数据丢失,
  69. //需要用一个临时变量来接收扩容后的地址
  70. if (tmp == NULL)
  71. {
  72. perror("realloc fail");
  73. exit(-1);//0为正常终止,-1为异常终止
  74. }
  75. ps->arr = tmp;
  76. ps->capacity = newCapacity;
  77. }
  78. }
  79. //尾插,尾删
  80. void SLPushBack(SL* ps, int x)
  81. {
  82. /*assert(ps);
  83. SLCheckCapacity(ps);
  84. ps->arr[ps->size] = x;
  85. ps->size++;*/
  86. SLInsert(ps,ps->size,x);
  87. }
  88. void SLPopBack(SL* ps)
  89. {
  90. //assert(ps->size);//断言,如果size<0,终止程序
  91. //ps->size--;
  92. SLEarse(ps, ps->size);
  93. }
  94. //头插,头删
  95. void SLPushFront(SL* ps, int x)
  96. {
  97. //assert(ps);
  98. //SLCheckCapacity(ps);
  99. 挪动数据
  100. //int end = ps->size-1;
  101. //while (end >= 0)
  102. //{
  103. // ps->arr[end + 1] = ps->arr[end];
  104. // end--;
  105. //}
  106. //ps->arr[0] = x;
  107. //ps->size++;
  108. SLInsert(ps, 0, x);
  109. }
  110. void SLPopFront(SL* ps)
  111. {
  112. //assert(ps);
  113. //assert(ps->size);
  114. 挪动数据
  115. //int begin = 1;
  116. //while (begin < ps->size)
  117. //{
  118. // ps->arr[begin-1] = ps->arr[begin];
  119. // begin++;
  120. //}
  121. //ps->size--;
  122. SLEarse(ps, 0);
  123. }
  124. //中间插,中间删
  125. void SLInsert(SL* ps, int pos, SLDataType x)
  126. {
  127. assert(ps);
  128. //先要检查一下pos,防止pos选择越界
  129. //
  130. //if (pos < 0 || pos > ps->size)
  131. //{
  132. // printf(“输入的pos不对”);
  133. // exit(-1);
  134. // //不想直接结束可以换return;
  135. //}
  136. //或者这样写:
  137. assert(pos >= 0);
  138. assert(pos <= ps->size);
  139. //先查看是否扩容
  140. SLCheckCapacity(ps);
  141. int end = ps->size - 1;
  142. while (end >= pos)
  143. {
  144. ps->arr[end + 1] = ps->arr[end];
  145. end--;
  146. }
  147. ps->arr[pos] = x;
  148. ps->size++;
  149. }
  150. void SLEarse(SL* ps, int pos)
  151. {
  152. assert(ps);
  153. //先要检查一下pos,防止pos选择越界。和中间插一样
  154. assert(pos >= 0);
  155. assert(pos <= ps->size );
  156. //挪动数据
  157. int begin = pos + 1;
  158. while (begin < ps->size)
  159. {
  160. ps->arr[begin - 1] = ps->arr[begin];
  161. begin++;
  162. }
  163. ps->size--;
  164. }
  165. //查找特定值
  166. int SLFind(SL* ps, SLDataType x)
  167. {
  168. assert(ps);
  169. for (int i = 0;i < ps->size;i++)
  170. {
  171. if (ps->arr[i] == x)
  172. {
  173. return i;
  174. }
  175. }
  176. return -1;
  177. }
  178. //删除特定值
  179. void SLDelete(SL* ps, SLDataType x)
  180. {
  181. assert(ps);
  182. if (SLFind(ps, x) == -1)
  183. {
  184. printf("%d在顺序表中不存在\n", x);
  185. }
  186. else
  187. {
  188. int pos = SLFind(ps, x);
  189. while (pos != -1)
  190. {
  191. SLEarse(ps, pos);
  192. pos = SLFind(ps, x);
  193. }
  194. }
  195. }
  196. //主函数
  197. //测试函数
  198. void text1()
  199. {
  200. SL s1;
  201. SLInit(&s1);
  202. printf("尾插测试:\n");
  203. SLPushBack(&s1, 1);
  204. SLPushBack(&s1, 5);
  205. SLPushBack(&s1, 1);
  206. SLprint(&s1);
  207. printf("尾删测试:\n");
  208. SLPopBack(&s1);
  209. SLprint(&s1);
  210. printf("头插测试:\n");
  211. SLPushFront(&s1, 4);
  212. SLPushFront(&s1, 5);
  213. SLPushFront(&s1, 1);
  214. SLprint(&s1);
  215. printf("头删测试:\n");
  216. SLPopFront(&s1);
  217. SLprint(&s1);
  218. printf("中间插入测试:\n");
  219. SLInsert(&s1, 2, 20);
  220. SLInsert(&s1, 4, 10);
  221. SLprint(&s1);
  222. printf("中间删除测试:\n");
  223. SLEarse(&s1, 3);
  224. SLprint(&s1);
  225. printf("查找测试:\n");
  226. printf("查找元素10并返回下标:%d\n", SLFind(&s1, 10));
  227. printf("删除元素为1的值,测试:\n");
  228. SLDelete(&s1, 1);
  229. SLprint(&s1);
  230. printf("删除元素为5的值,测试:\n");
  231. SLDelete(&s1, 5);
  232. SLprint(&s1);
  233. SLDestroy(&s1);
  234. }
  235. void mune()
  236. {
  237. printf("1.尾插\n");
  238. printf("2.尾删\n");
  239. printf("3.头插\n");
  240. printf("4.头删\n");
  241. printf("5.中间插\n");
  242. printf("6.中间删\n");
  243. printf("7.查找特定值\n");
  244. printf("8.删除特定值\n");
  245. printf("9.打印数据\n");
  246. printf("0.退出\n");
  247. }
  248. void text2()
  249. {
  250. int option = 1;
  251. SL s2;
  252. SLInit(&s2);
  253. SLPushBack(&s2, 1);
  254. SLPushBack(&s2, 5);
  255. SLPushBack(&s2, 1);
  256. SLPushBack(&s2, 2);
  257. SLPushFront(&s2, 4);
  258. SLPushFront(&s2, 5);
  259. SLPushFront(&s2, 1);
  260. while (option)
  261. {
  262. mune();
  263. printf("请输入:");
  264. scanf("%d", &option);
  265. SLDataType a = 0;
  266. SLDataType b = 0;
  267. switch(option)
  268. {
  269. case 1:
  270. printf("请依次输入你要尾插的数据,以-1结束:");
  271. scanf("%d", &a);
  272. while (a != -1)
  273. {
  274. SLPushBack(&s2, a);
  275. scanf("%d", &a);
  276. }
  277. system("cls");
  278. printf("插入成功!\n");
  279. break;
  280. case 2:
  281. SLPopBack(&s2);
  282. system("cls");
  283. printf("尾删成功!\n");
  284. break;
  285. case 3:
  286. printf("请输入你要头插的数据:");
  287. scanf("%d", &a);
  288. SLPushFront(&s2, a);
  289. system("cls");
  290. printf("头插成功!\n");
  291. break;
  292. case 4:
  293. SLPopFront(&s2);
  294. system("cls");
  295. printf("头删成功!\n");
  296. break;
  297. case 5:
  298. printf("请输入要插入的位置下标:");
  299. scanf("%d", &b);
  300. printf("请输入要插入的数:");
  301. scanf("%d", &a);
  302. SLInsert(&s2, b, a);
  303. system("cls");
  304. printf("中间插入成功!\n");
  305. break;
  306. case 6:
  307. printf("请输入要删除的位置下标:");
  308. scanf("%d", &b);
  309. SLEarse(&s2, b);
  310. system("cls");
  311. printf("中间删除成功!\n");
  312. break;
  313. case 7:
  314. {
  315. SL s;
  316. SLInit(&s);
  317. for (int i = 0;i < s2.size; i++)
  318. {
  319. SLCheckCapacity(&s);
  320. s.arr[i] = s2.arr[i];
  321. s.size++;
  322. }
  323. system("cls");
  324. printf("请输入要查找的数:");
  325. scanf("%d", &a);
  326. printf("查找元素:%d\n返回下标:", a);
  327. while (SLFind(&s, a) != -1)
  328. {
  329. printf("%d ", SLFind(&s, a));
  330. SLEarse(&s, SLFind(&s, a));
  331. if (SLFind(&s, a) != -1)
  332. {
  333. SLInsert(&s, SLFind(&s, a), 0);
  334. }
  335. }
  336. printf("\n");
  337. SLDestroy(&s);
  338. }
  339. break;
  340. case 8:
  341. printf("请输入要删除的数:");
  342. scanf("%d", &a);
  343. SLDelete(&s2, a);
  344. system("cls");
  345. printf("删除成功!\n");
  346. break;
  347. case 9:
  348. system("cls");
  349. SLprint(&s2);
  350. printf("\n");
  351. break;
  352. case 0:
  353. SLDestroy(&s2);
  354. break;
  355. default:
  356. system("cls");
  357. printf("选择错误!请重选:\n");
  358. break;
  359. }
  360. }
  361. }
  362. int main()
  363. {
  364. //text1();
  365. //菜单函数,建议先用text1调试成功后,再写菜单
  366. text2();
  367. return 0;
  368. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/570020
推荐阅读
相关标签
  

闽ICP备14008679号