数据结构 栈的建立

举报
悦来客栈的老板 发表于 2020/12/29 23:23:00 2020/12/29
【摘要】 #include <stdio.h>#include <stdlib.h> #define STACT_INIT_SIZE 100#define STACTINCREMENT 10#define OK 1#define ERROR 0#define OVERFLOW -2 typedef int SElemType; typedef struct...

  
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #define STACT_INIT_SIZE 100
  4. #define STACTINCREMENT 10
  5. #define OK 1
  6. #define ERROR 0
  7. #define OVERFLOW -2
  8. typedef int SElemType;
  9. typedef struct
  10. {
  11. SElemType *base;
  12. SElemType *top;
  13. int stacksize;
  14. }SqStack;
  15. int InitStack(SqStack &S)
  16. {
  17. S.base = (SElemType *)malloc(STACT_INIT_SIZE * sizeof(SElemType));
  18. if (!S.base)
  19. {
  20. exit(OVERFLOW);
  21. }
  22. S.top = S.base ;
  23. S.stacksize = STACT_INIT_SIZE;
  24. return OK;
  25. }
  26. int Push(SqStack &S, SElemType e)
  27. {
  28. if (S.top - S.base >= S.stacksize)
  29. {
  30. S.base = (SElemType*)realloc(S.base , (S.stacksize + STACTINCREMENT) * sizeof(SElemType));
  31. if (!S.base)
  32. {
  33. exit(OVERFLOW);
  34. }
  35. S.top = S.base + S.stacksize ;
  36. S.stacksize += STACTINCREMENT;
  37. }
  38. *S.top++ = e;
  39. return OK;
  40. }
  41. int Pop(SqStack &S, SElemType &e)
  42. {
  43. if (S.base == S.top)
  44. {
  45. return ERROR;
  46. }
  47. e = *--S.top;
  48. return OK;
  49. }
  50. void Print_Sq(SqStack S)
  51. {
  52. if (S.top == S.base)
  53. {
  54. return;
  55. }
  56. while (S.top - S.base != 0)
  57. {
  58. printf("%d ",*--S.top);
  59. }
  60. printf("\n");
  61. }
  62. int GetTop(SqStack S,SElemType &e)
  63. {
  64. if (S.base == S.top)
  65. {
  66. return ERROR;
  67. }
  68. e = *(S.top-1);
  69. return OK;
  70. }
  71. int StackEmpty(SqStack S)
  72. {
  73. if (S.top == S.base )
  74. {
  75. return 1;
  76. }
  77. return 0;
  78. }
  79. int StackLength(SqStack S)
  80. {
  81. return S.top - S.base ;
  82. }
  83. int ClearStack(SqStack &S)
  84. {
  85. S.top = S.base ;
  86. return OK;
  87. }
  88. int DestroyStack(SqStack &S)
  89. {
  90. free(S.base);
  91. S.base = NULL;
  92. S.top = NULL;
  93. S.stacksize = 0;
  94. return OK;
  95. }
  96. int main()
  97. {
  98. SqStack S;
  99. int i,n,e;
  100. InitStack(S);
  101. printf("请输入您要建立初始栈的大小:");
  102. scanf("%d",&n);
  103. printf("请输入 %d 个栈元素:",n);
  104. for (i=0; i<n; i++)
  105. {
  106. scanf("%d",&e);
  107. Push(S,e);
  108. }
  109. printf("您输入的栈是:");
  110. Print_Sq(S);
  111. printf("请输入一个元素压栈:");
  112. scanf("%d",&e);
  113. Push(S,e);
  114. printf("压入元素后的栈是:");
  115. Print_Sq(S);
  116. printf("执行一次出栈操作...\n");
  117. Pop(S,e);
  118. printf("出栈的元素是:%d\n",e);
  119. printf("出栈后的栈元素是:");
  120. Print_Sq(S);
  121. GetTop(S,e);
  122. printf("当前栈顶元素:%d\n",e);
  123. printf("当前栈的元素个数:%d\n",StackLength(S));
  124. return 0;
  125. }


 

文章来源: blog.csdn.net,作者:悦来客栈的老板,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/qq523176585/article/details/17249071

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。