当前位置:   article > 正文

【数据结构初阶】深度理解 “栈” (附源码)

【数据结构初阶】深度理解 “栈” (附源码)

hello,又见面了!

目录

1.  栈的概念与结构

2、栈的实现

Stack.h

Stack.c

test.c

3、习题


正文开始——

1.  栈的概念与结构

栈:一种特殊的线性表,其只允许在固定的一端进行插入和删除元素操作。进行数据插入和删除操作的一端称为栈顶,另一端称为栈底。栈中的数据元素遵守先进后出的原则。

压栈:栈的插入操作叫做进栈/压栈/入栈,入数据在栈顶。

出栈:栈的删除操作叫出栈,出数据也在栈顶。

【图解】

栈的底层结构

内存比较:双向链表比单链表多了一种指针,内存占用就相对多一些;数组和单链表,数组每次都以2倍大小增容,正因如此,无需多次增容,而单链表每次增加数据都要申请空间,删除数据要释放空间,较为繁琐。

栈的实现一般可以使用数组或者链表实现,相对而言数组的结构实现更好一些,因为数组在尾插数据时代价更小。

2、栈的实现

栈里的数据不能被遍历,不能被随机访问。每次取数据只能取栈顶数据

Stack.h

  1. #pragma once
  2. #include<stdio.h>
  3. #include<assert.h>
  4. #include<stdlib.h>
  5. #include<stdbool.h>
  6. //定义栈的结构
  7. typedef int STDataType;
  8. typedef struct Stack
  9. {
  10. STDataType* arr;
  11. int capacity; //栈的容量
  12. int top; //栈顶
  13. }ST;
  14. //初始化
  15. void STInit(ST* ps);
  16. //销毁
  17. void STDestroy(ST* ps);
  18. //入数据
  19. void StackPush(ST* ps, STDataType x);
  20. //出数据
  21. void StackPop(ST* st);
  22. //取栈顶元素
  23. STDataType StackTop(ST* ps);
  24. //判空
  25. bool StackEmpty(ST* ps);
  26. //获取栈中有效的数据个数
  27. int STsize(ST* ps);

Stack.c

  1. #define _CRT_SECURE_NO_WARNINGS 1
  2. #include"Stack.h"
  3. //初始化
  4. void STInit(ST* ps)
  5. {
  6. assert(ps);
  7. ps->arr = NULL;
  8. ps->capacity = ps->top = 0; //此时栈为空,栈顶=栈底
  9. }
  10. //销毁
  11. void STDestroy(ST* ps)
  12. {
  13. assert(ps);
  14. if (ps->arr)
  15. {
  16. free(ps->arr);
  17. }
  18. ps->arr = NULL;
  19. ps->capacity = ps->top = 0;
  20. }
  21. //入数据
  22. void StackPush(ST* ps, STDataType x)
  23. {
  24. assert(ps);
  25. //判断空间是否足够
  26. if (ps->capacity == ps->top)
  27. {
  28. //申请空间
  29. int newCapacity = ps->capacity == 0 ? 4 : 2 * ps->capacity;
  30. STDataType* tmp = (STDataType*)realloc(ps->arr, newCapacity * sizeof(STDataType));
  31. if (tmp == NULL)
  32. {
  33. perror("realloc file!");
  34. exit(1);
  35. }
  36. ps->arr = tmp;
  37. ps->capacity = newCapacity;
  38. }
  39. //空间足够
  40. ps->arr[ps->top++] = x;
  41. }
  42. //出数据
  43. void StackPop(ST* ps)
  44. {
  45. assert(ps);
  46. assert(!StackEmpty(ps));
  47. ps->top--;
  48. }
  49. //判空
  50. bool StackEmpty(ST* ps)
  51. {
  52. assert(ps);
  53. return ps->top == 0;
  54. }
  55. //取栈顶元素
  56. STDataType StackTop(ST* ps)
  57. {
  58. assert(ps);
  59. assert(!StackEmpty(ps));
  60. return ps->arr[ps->top - 1];
  61. }
  62. //获取栈中有效的数据个数
  63. int STsize(ST* ps)
  64. {
  65. assert(ps);
  66. return ps->top;
  67. }

test.c

  1. #define _CRT_SECURE_NO_WARNINGS 1
  2. #include"Stack.h"
  3. void STTest()
  4. {
  5. ST st;
  6. STInit(&st);
  7. StackPush(&st,1);
  8. StackPush(&st,2);
  9. StackPush(&st,3);
  10. StackPush(&st,4);
  11. StackPush(&st,5);
  12. printf("size:%d\n", STsize(&st));
  13. /*StackPop(&st);*/
  14. //循环出栈,直到栈为空
  15. while (!StackEmpty(&st))
  16. {
  17. STDataType data = StackTop(&st);
  18. printf("%d ", data);
  19. //出栈
  20. StackPop(&st);
  21. }
  22. printf("size:%d\n", STsize(&st));
  23. STDestroy(&st);
  24. }
  25. int main()
  26. {
  27. STTest();
  28. return 0;
  29. }

3、习题

【思路】 

  1. //定义栈的结构
  2. typedef char STDataType;
  3. typedef struct Stack
  4. {
  5. STDataType* arr;
  6. int capacity; //栈的容量
  7. int top; //栈顶
  8. }ST;
  9. //初始化
  10. void STInit(ST* ps)
  11. {
  12. assert(ps);
  13. ps->arr = NULL;
  14. ps->capacity = ps->top = 0; //此时栈为空,栈顶=栈底
  15. }
  16. //销毁
  17. void STDestroy(ST* ps)
  18. {
  19. assert(ps);
  20. if (ps->arr)
  21. {
  22. free(ps->arr);
  23. }
  24. ps->arr = NULL;
  25. ps->capacity = ps->top = 0;
  26. }
  27. //入数据
  28. void StackPush(ST* ps, STDataType x)
  29. {
  30. assert(ps);
  31. //判断空间是否足够
  32. if (ps->capacity == ps->top)
  33. {
  34. //申请空间
  35. int newCapacity = ps->capacity == 0 ? 4 : 2 * ps->capacity;
  36. STDataType* tmp = (STDataType*)realloc(ps->arr, newCapacity * sizeof(STDataType));
  37. if (tmp == NULL)
  38. {
  39. perror("realloc file!");
  40. exit(1);
  41. }
  42. ps->arr = tmp;
  43. ps->capacity = newCapacity;
  44. }
  45. //空间足够
  46. ps->arr[ps->top++] = x;
  47. }
  48. //判空
  49. bool StackEmpty(ST* ps)
  50. {
  51. assert(ps);
  52. return ps->top == 0;
  53. }
  54. //出数据
  55. void StackPop(ST* ps)
  56. {
  57. assert(ps);
  58. assert(!StackEmpty(ps));
  59. ps->top--;
  60. }
  61. //取栈顶元素
  62. STDataType StackTop(ST* ps)
  63. {
  64. assert(ps);
  65. assert(!StackEmpty(ps));
  66. return ps->arr[ps->top - 1];
  67. }
  68. bool isValid(char* s) {
  69. ST st;
  70. STInit(&st);
  71. char* ps=s;
  72. while(*ps!='\0')
  73. {
  74. //左括号,入栈
  75. if(*ps=='('||*ps=='['||*ps=='{')
  76. {
  77. StackPush(&st,*ps);
  78. }
  79. else //右括号,与栈顶元素判断是否匹配,匹配,出栈,不匹配,返回false
  80. {
  81. if(StackEmpty(&st))
  82. {
  83. STDestroy(&st);
  84. return false;
  85. }
  86. char ch=StackTop(&st);
  87. if(*ps==')'&&ch=='('||*ps=='}'&&ch=='{'||*ps==']'&&ch=='[')
  88. {
  89. StackPop(&st);
  90. }
  91. else
  92. {
  93. STDestroy(&st);
  94. return false;
  95. }
  96. }
  97. ps++;
  98. }
  99. bool ret=StackEmpty(&st)==true;
  100. STDestroy(&st);
  101. return ret;
  102. }

至此,栈,结束——


完——

最好的安排_曲婉婷_高音质在线试听_最好的安排歌词|歌曲下载_酷狗音乐酷狗音乐为您提供由曲婉婷演唱的高清音质无损最好的安排mp3在线听,听最好的安排,只来酷狗音乐!icon-default.png?t=N7T8https://t3.kugou.com/song.html?id=Ykfb93CQV2

至此结束——

我是云边有个稻草人

期待与你的下一次相遇 !

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

闽ICP备14008679号