当前位置:   article > 正文

C语言/数据结构——每日一题(用栈实现队列)

C语言/数据结构——每日一题(用栈实现队列)

一.前言

前面我们已经学习了栈的基本实现https://mp.csdn.net/mp_blog/creation/editor/138923750

队列的基本实现htt
ps://blog.csdn.net/yiqingaa/article/details/139033067?spm=1001.2014.3001.5501

现在我们尝试一下,使用栈来实现队列:https://leetcode.cn/problems/implement-queue-using-stacks/submissions/533582565/

二 .正文

1.1题目描述

1.2题目分析

1.21题目想要我们做什么

本题想要我们使用两个栈,来模拟实现队列对数据的队尾插入、队头删除、判断队列是否为空、以及返回队头元素操作这些函数功能的实现。

1.22解题思路

这道题我们可以将这两个栈分别命名为pushst和popst。

pushst专门用来存储数据。

popst专门用来删除数据

这样让两个栈都有其独特职责,就可以避免每次在删除数据和存储数据的时候都要进行一个栈里面的数据都要导入到另一个栈里面。

1.3代码实现

值得注意的是,当我们使用C语言写这道题的时候, 我们必须自己创建我们自己的栈,力扣官网不会提供。但是当我们使用C++后,力扣官网就会提供栈,以及栈实现数据增删查改函数功能的接口。因为在C语言环境下它没给,因此这些东西我们只能自己实现。

使用栈实现对数据的增删查改,我们已经写过了。有兴趣的小伙伴可以查看一下

https://blog.csdn.net/yiqingaa/article/details/138923750?spm=1001.2014.3001.5502

  1. typedef int STDataType;
  2. struct Stack
  3. {
  4. STDataType* a;
  5. int top;
  6. int capacity;
  7. };
  8. typedef struct Stack ST;
  9. void STInit(ST* ps);//栈的初始化
  10. void STDestroy(ST* ps);//栈的销毁
  11. void STPush(ST*PS,STDataType x);//入栈
  12. void STPop(ST* ps);//出栈
  13. STDataType STTop(ST* ps);//取栈顶的数据
  14. bool STEmpty(ST*ps);//判空
  15. int STSize(ST* PS);//获取数据个数
  16. void STInit(ST *ps)//栈的初始化
  17. {
  18. assert(ps);
  19. ps->a = NULL;
  20. ps->capacity = ps->top = 0;
  21. }
  22. void STDestroy(ST* ps)//栈的销毁
  23. {
  24. assert(ps);
  25. free(ps->a);
  26. ps->a = NULL;
  27. ps->top = ps->capacity = 0;
  28. }
  29. void STPush(ST* ps, STDataType x)//入栈
  30. {
  31. assert(ps);
  32. if (ps->capacity == ps->top)
  33. {
  34. int newcapacity = ps->capacity == 0 ? 6 : ps->capacity*2;
  35. STDataType* tmp = (STDataType*)realloc(ps->a, newcapacity * sizeof(STDataType));
  36. if (tmp == NULL)
  37. {
  38. perror("realloc fail!");
  39. return;
  40. }
  41. ps->a = tmp;
  42. ps->capacity = newcapacity;
  43. }
  44. ps->a[ps->top] = x;
  45. ps->top++;
  46. }
  47. void STPop(ST* ps)//删除栈顶元素
  48. {
  49. assert(ps);
  50. assert(ps->a);
  51. ps->top--;
  52. }
  53. STDataType STTop(ST* ps)//取出栈顶元素
  54. {
  55. assert(ps);
  56. assert(ps->top >= 0);
  57. return ps->a[ps->top-1];
  58. }
  59. bool STEmpty(ST* ps)//判断栈内元素是否为空
  60. {
  61. assert(ps);
  62. if (ps->top == 0)
  63. return true;
  64. return false;
  65. }
  66. int STSize(ST* ps)//获取数据个数
  67. {
  68. assert(ps);
  69. return ps->top ;
  70. }
  71. typedef struct {
  72. ST pushst;
  73. ST popst;
  74. } MyQueue;
  75. MyQueue* myQueueCreate() {
  76. MyQueue* obj=(MyQueue*)malloc(sizeof(MyQueue));
  77. STInit(&(obj->pushst));
  78. STInit(&(obj->popst));
  79. return obj;
  80. }
  81. void myQueuePush(MyQueue* obj, int x) {
  82. STPush(&(obj->pushst),x);
  83. }
  84. int myQueuePeek(MyQueue* obj);
  85. int myQueuePop(MyQueue* obj) {
  86. int ret=myQueuePeek(obj);
  87. STPop(&(obj->popst));
  88. return ret;
  89. }
  90. int myQueuePeek(MyQueue* obj) {
  91. if(STEmpty(&(obj->popst))==true)
  92. {
  93. while(STEmpty(&(obj->pushst))!=true)
  94. {
  95. int ret=STTop(&(obj->pushst));
  96. STPush(&(obj->popst),ret);
  97. STPop(&(obj->pushst));
  98. }
  99. }
  100. return STTop(&(obj->popst));
  101. }
  102. bool myQueueEmpty(MyQueue* obj) {
  103. if(STEmpty(&(obj->pushst))&&STEmpty(&(obj->popst))==true)
  104. return true;
  105. return false;
  106. }
  107. void myQueueFree(MyQueue* obj) {
  108. STDestroy(&(obj->pushst));
  109. STDestroy(&(obj->popst));
  110. free(obj);
  111. }
  112. /**
  113. * Your MyQueue struct will be instantiated and called as such:
  114. * MyQueue* obj = myQueueCreate();
  115. * myQueuePush(obj, x);
  116. * int param_2 = myQueuePop(obj);
  117. * int param_3 = myQueuePeek(obj);
  118. * bool param_4 = myQueueEmpty(obj);
  119. * myQueueFree(obj);
  120. */

三.结言

本题到这就已经分享结束了,有兴趣的小伙伴,能不能给个三连。 

我们下期再见,拜拜~

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

闽ICP备14008679号