• 【数据结构初阶】一个队列怎么实现栈~~OJ


    目录

    1.用两个队列实现栈

     变式:如何用一个队列实现栈

    2.用两个栈实现队列


    1.用两个队列实现栈

    用队列实现栈

     思路:主要是“入栈”和“出栈”

    左边的是栈,假设1234依次进栈,那么如果要用右边的两个队列实现栈的功能,就应该按照4321的次序出栈,按照题目要求得用两个队列实现4321出数据的形式,并且完成栈的初始化,判空,销毁等功能。

    第一步:实现“入栈”,我们将要入的每一个数据都入在其中一个队列,而保持另一个为空

    第二步:实现“出栈步骤1”,因为每出一个数据都要来回倒腾数据,使得这次这个队列为空,下一次就是另一个为空,所以这里为了方便,我们就不关心q1和q2谁为空,而是用空队列和非空队列来描述操作。

    我们先取非空队列里的队头数据入到之前预留好的空队列中,然后将非空队列里队头数据出队列,依次类推,直到原来的非空队列中只剩一个元素,此时,原来非空队列里的前size-1个数据都保留到了原来的空队列中。

     第三步:实现“出栈步骤2”,将原来的非空队列中的唯一一个数据4出队列,即完成一次出队列的过程。

    这里有很多细节值得我们的注意:

    1.模拟初始化栈的时候,在定义MyStack时不能定义一个局部变量,然后返回局部变量的地址,这是经典的返回栈空间地址的错误。(下面是错误的写法)

    1. MyStack* myStackCreate() {
    2. MyStack obj;
    3. //...
    4. return &obj;
    5. }

    2.模拟出栈的时候,我们为了方便,定义出empty和noempty两个队列的指针,而非拷贝!

    (下面是错误的写法)

    1. int myStackPop(MyStack* obj) {
    2. Queue empty=obj->q1;
    3. Queue noempty=obj->q2;
    4. if(QueueEmpty(&obj->q2))
    5. {
    6. empty=obj->q2;
    7. noempty=obj->q1;
    8. }
    9. while(QueueSize(&noempty)>1)
    10. {
    11. QueuePush(&empty,QueueFront(noempty));
    12. QueuePop(&noempty);
    13. }
    14. int ret=QueueFront(&noempty);
    15. QueuePop(&noempty);
    16. return ret;
    17. }

    3.模拟销毁栈的时候 ,不能直接free(obj),这样释放掉的仅仅是MyStack这个结构体的变量,而结构体变量里的一些指针所指向的动态开辟的空间并不会被释放掉!!(下面是错误的写法)

    而将QueueDestory(&obj->q1);QueueDestory(&obj->q2);调用Queue的函数一个一个将链表结点释放才能真正达到释放的目的~~

    1. void myStackFree(MyStack* obj) {
    2. free(obj);
    3. }

    下面是完整的正确的代码~~ 

    1. typedef int QDateType;
    2. typedef struct QueueNode
    3. {
    4. struct QueueNode* next;
    5. QDateType val;
    6. }QueueNode;
    7. typedef struct Queue
    8. {
    9. QueueNode* head;
    10. QueueNode* tail;
    11. }Queue;
    12. void QueueInit(Queue* ps);
    13. void QueuePush(Queue* ps, QDateType x);
    14. void QueuePop(Queue* ps);
    15. QDateType QueueFront(Queue* ps);
    16. QDateType QueueBack(Queue* ps);
    17. bool QueueEmpty(Queue* ps);
    18. int QueueSize(Queue* ps);
    19. void QueueDestory(Queue* ps);
    20. void QueueInit(Queue* ps)
    21. {
    22. assert(ps);
    23. ps->head = ps->tail = NULL;
    24. }
    25. void QueueDestory(Queue* ps)
    26. {
    27. assert(ps);
    28. QueueNode* cur = ps->head;
    29. while (cur)
    30. {
    31. QueueNode* next = cur->next;
    32. free(cur);
    33. cur = next;
    34. }
    35. ps->head = ps->tail = NULL;
    36. }
    37. //入队列:尾插
    38. void QueuePush(Queue* ps,QDateType x)
    39. {
    40. assert(ps);
    41. QueueNode* newnode = (QueueNode*)malloc(sizeof(QueueNode));
    42. newnode->next = NULL;
    43. newnode->val = x;
    44. if (newnode == NULL)
    45. {
    46. perror("malloc fail.");
    47. exit(-1);
    48. }
    49. if (ps->tail == NULL)
    50. {
    51. ps->head = ps->tail = newnode;
    52. }
    53. else
    54. {
    55. ps->tail->next = newnode;
    56. ps->tail = ps->tail->next;
    57. }
    58. }
    59. void QueuePop(Queue* ps)
    60. {
    61. assert(ps);
    62. assert(!QueueEmpty(ps));
    63. if (ps->head == ps->tail)
    64. {
    65. free(ps->head);
    66. ps->head = ps->tail = NULL;
    67. }
    68. else
    69. {
    70. QueueNode* next = ps->head->next;
    71. free(ps->head);
    72. ps->head = next;
    73. }
    74. }
    75. QDateType QueueFront(Queue* ps)
    76. {
    77. assert(ps);
    78. assert(!QueueEmpty(ps));
    79. return ps->head->val;
    80. }
    81. QDateType QueueBack(Queue* ps)
    82. {
    83. assert(ps);
    84. assert(!QueueEmpty(ps));
    85. return ps->tail->val;
    86. }
    87. bool QueueEmpty(Queue* ps)
    88. {
    89. assert(ps);
    90. return ps->tail == NULL;
    91. }
    92. int QueueSize(Queue* ps)
    93. {
    94. assert(ps);
    95. int size = 0;
    96. QueueNode* cur = ps->head;
    97. while(cur)
    98. {
    99. ++size;
    100. cur = cur->next;
    101. }
    102. return size;
    103. }
    104. typedef struct {
    105. Queue q1;
    106. Queue q2;
    107. } MyStack;
    108. MyStack* myStackCreate() {
    109. MyStack* obj=(MyStack*)malloc(sizeof(MyStack));
    110. QueueInit(&obj->q1);
    111. QueueInit(&obj->q2);
    112. return obj;
    113. }
    114. void myStackPush(MyStack* obj, int x) {
    115. //代码书写方式1:
    116. // Queue* empty=&obj->q1;
    117. // Queue* noempty=&obj->q2;
    118. // if(QueueEmpty(&obj->q2))
    119. // {
    120. // empty=&obj->q2;
    121. // noempty=&obj->q1;
    122. // }
    123. // QueuePush(noempty,x);
    124. //代码书写方式2:
    125. if(!QueueEmpty(&obj->q1))
    126. {
    127. QueuePush(&obj->q1,x);
    128. }
    129. else
    130. {
    131. QueuePush(&obj->q2,x);
    132. }
    133. }
    134. int myStackPop(MyStack* obj) {
    135. Queue* empty=&obj->q1;
    136. Queue* noempty=&obj->q2;
    137. if(QueueEmpty(&obj->q2))
    138. {
    139. empty=&obj->q2;
    140. noempty=&obj->q1;
    141. }
    142. while(QueueSize(noempty)>1)
    143. {
    144. QueuePush(empty,QueueFront(noempty));
    145. QueuePop(noempty);
    146. }
    147. int ret=QueueFront(noempty);
    148. QueuePop(noempty);
    149. return ret;
    150. }
    151. int myStackTop(MyStack* obj) {
    152. if(!QueueEmpty(&obj->q1))
    153. {
    154. return QueueBack(&obj->q1);
    155. }
    156. else
    157. {
    158. return QueueBack(&obj->q2);
    159. }
    160. }
    161. bool myStackEmpty(MyStack* obj) {
    162. return QueueEmpty(&obj->q1)&&QueueEmpty(&obj->q2);
    163. }
    164. void myStackFree(MyStack* obj) {
    165. QueueDestory(&obj->q1);
    166. QueueDestory(&obj->q2);
    167. free(obj);
    168. }

     变式:如何用一个队列实现栈

    1. typedef struct {
    2. Queue q;
    3. } MyStack;
    4. MyStack* myStackCreate() {
    5. MyStack* obj=(MyStack*)malloc(sizeof(MyStack));
    6. QueueInit(&obj->q);
    7. return obj;
    8. }
    9. void myStackPush(MyStack* obj, int x) {
    10. QueuePush(&obj->q,x);
    11. for(int i=0;iq)-1;i++)
    12. {
    13. QueuePush(&obj->q,QueueFront(&obj->q));
    14. QueuePop(&obj->q);
    15. }
    16. }
    17. int myStackPop(MyStack* obj) {
    18. int top=QueueFront(&obj->q);
    19. QueuePop(&obj->q);
    20. return top;
    21. }
    22. int myStackTop(MyStack* obj) {
    23. return QueueFront(&obj->q);
    24. }
    25. bool myStackEmpty(MyStack* obj) {
    26. return QueueEmpty(&obj->q);
    27. }
    28. void myStackFree(MyStack* obj) {
    29. QueueDestory(&obj->q);
    30. free(obj);
    31. }

    2.用两个栈实现队列

    用两个栈实现队列

     思路:两个栈,一个用作入数据PushST,一个用作出数据PopST,在栈内倒转两次就变成正序了~~

    “队列”入数据:直接入PushST栈

    "队列"出数据:如果PopST栈为空,则将PushST栈内的数据先全部倒到PopST中,然后再在PopST中出数据;
                            如果PopST栈不为空,则直接在PopST中出数据。

    需要特别注意的是:"队列"出数据的时候,如果PopST栈不为空,则直接在PopST中出数据。这样可以避免123先入栈后,出了一个3后,再入数据4的情况出错!

    1. typedef struct {
    2. Stack PushST;
    3. Stack PopST;
    4. } MyQueue;
    5. MyQueue* myQueueCreate() {
    6. MyQueue* obj=(MyQueue*)malloc(sizeof(MyQueue));
    7. StackInit(&obj->PushST);
    8. StackInit(&obj->PopST);
    9. return obj;
    10. }
    11. void myQueuePush(MyQueue* obj, int x) {
    12. StackPush(&obj->PushST,x);
    13. }
    14. //未复用myQueuePeek代码的书写代码方式1:
    15. int myQueuePop(MyQueue* obj) {
    16. if(StackEmpty(&obj->PopST))
    17. {
    18. while(!StackEmpty(&obj->PushST))
    19. {
    20. StackPush(&obj->PopST,StackTop(&obj->PushST));
    21. StackPop(&obj->PushST);
    22. }
    23. }
    24. int top=StackTop(&obj->PopST);
    25. StackPop(&obj->PopST);
    26. return top;
    27. }
    28. int myQueuePeek(MyQueue* obj);
    29. //复用myQueuePeek代码的书写代码方式2:
    30. // int myQueuePop(MyQueue* obj) {
    31. // // if(StackEmpty(&obj->PopST))
    32. // // {
    33. // // while(!StackEmpty(&obj->PushST))
    34. // // {
    35. // // StackPush(&obj->PopST,StackTop(&obj->PushST));
    36. // // StackPop(&obj->PushST);
    37. // // }
    38. // // }
    39. // int top=myQueuePeek(obj);
    40. // StackPop(&obj->PopST);
    41. // return top;
    42. // }
    43. int myQueuePeek(MyQueue* obj) {
    44. if(StackEmpty(&obj->PopST))
    45. {
    46. while(!StackEmpty(&obj->PushST))
    47. {
    48. StackPush(&obj->PopST,StackTop(&obj->PushST));
    49. StackPop(&obj->PushST);
    50. }
    51. }
    52. return StackTop(&obj->PopST);
    53. }
    54. bool myQueueEmpty(MyQueue* obj) {
    55. return StackEmpty(&obj->PushST)&&StackEmpty(&obj->PopST);
    56. }
    57. void myQueueFree(MyQueue* obj) {
    58. StackDestory(&obj->PushST);
    59. StackDestory(&obj->PopST);
    60. free(obj);
    61. }

  • 相关阅读:
    [论文阅读] Adversarial Latent Autoencoders
    【LeetCode】297.二叉树的序列化与反序列化
    《HCIP-openEuler实验指导手册》1.1Apache安装与测试
    【求助】西门子S7-200PLC定时中断+数据归档的使用
    使用 SQL 加密函数实现数据列的加解密
    MongoDB ObjectId 详解
    MySQL基础语法快速上手
    Node.js 学习笔记
    SSM+手机销售网站 毕业设计-附源码161043
    RabbitMQ-01(基本概念、理论性知识)
  • 原文地址:https://blog.csdn.net/qq_64428099/article/details/126189040