如何反转堆栈

问题描述 投票:0回答:6

我有一个作业,我应该获取一个堆栈,显示输出,然后反转它以显示输出。

它应该看起来像这样

Stack:
262 115 74 26 34 243 22 734 113 121
Stack Reversed:
121 113 734 22 243 34 26 74 115 262

我的结果是这样的

Stack:
262 115 74 26 34 243 22 734 113 121 121 113 734 22 243 34 26 74 115 262
Stack Reversed:

有人可以看看我的代码,看看发生了什么吗?我已经尝试了很多事情,但无法让任何事情发挥作用。

#include <stdio.h>
#include <iostream>

#include "linkedStack.h"

using namespace std;

template <class Type>
void printStack(linkedStackType<Type>& stack);

template <class Type>
void reverseStack(linkedStackType<Type>& stack);

int main(int argc, char **argv)
{
   // Declare stack variables
   linkedStackType<int> stack;

   // Add some data to the stack
   stack.push(121);
   stack.push(113);
   stack.push(734);
   stack.push(22);
   stack.push(243);
   stack.push(34);
   stack.push(26);
   stack.push(74);
   stack.push(115);
   stack.push(262);

   cout << "\nStack:\n   ";
   printStack(stack);

   reverseStack(stack);

   cout << "\nStack Reversed:\n   ";
   printStack(stack);

   cout << "\n\n** Press any key to continue **\n";
   getchar();

   return 0;
}

template <class Type>
void printStack(linkedStackType<Type>& stack)
{
   Type item;
   linkedStackType<Type> tmpStack = stack;

   while (stack.isEmptyStack() == false)
   {
      item = stack.top();
      stack.pop();
      cout << item << " ";
   }

   stack = tmpStack;



 }

template <class Type>
void reverseStack(linkedStackType<Type>& stack)
{
  Type item;
   linkedStackType<Type> tmpStack;

   while (stack.isEmptyStack() == false)
   {
      item = stack.top();
      stack.pop();
      tmpStack.push(item);
   }

   while (tmpStack.isEmptyStack() == false)
   {
      item = tmpStack.top();
      tmpStack.pop();
      stack.push(item);
      cout << item;  

   }

   stack = tmpStack;


   return;
}
c++ stack
6个回答
11
投票

我不是 100%,但我想如果你删除

reverseStack
的第二个 while 循环,你的代码将会工作。

template <class Type>
void reverseStack(linkedStackType<Type>& stack)
{
   Type item;
   linkedStackType<Type> tmpStack;

   while (stack.isEmptyStack() == false)
   {
      item = stack.top();
      stack.pop();
      tmpStack.push(item);
   }

   //while (tmpStack.isEmptyStack() == false)
   //{
   //   item = tmpStack.top();
   //   tmpStack.pop();
   //   stack.push(item);
   //   cout << item;
   //}

   stack = tmpStack;
   return;
}

1
投票

reverseStack() 中有一个无关的打印循环,它在错误的位置打印值。此外,此打印循环会清除您的 tmpStack。这解释了结果。


1
投票

你的第二个

while
循环清空了
tmpStack
,但随后你将现在为空的堆栈分配给
stack
,所以你只有一个空堆栈。


0
投票

这是我反转 std::stack 内容的解决方案:

#include <stack>
#include <algorithm>    

template <class T>
class _stack : public std::stack<T>
{
    public:
        void reverse()
        {
            std::reverse(this->c.begin(),this->c.end());
        }
};
    
template <class T>
bool reverseStack(std::stack<T> & stack)
{
    bool ret = false;
    auto * s = reinterpret_cast<_stack<T>*> (&stack);
    if(s)
    {
        s->reverse();
        ret = true;
     }
     return ret;
}
    
int main()
{
   std::stack<int> stack;
   stack.push(1);
   stack.push(2);
   stack.push(3);
   stack.push(4);
   stack.push(5);
    
   reverseStack(stack);
}

您可以使用相同的方法访问 cointeiner 并使用迭代器打印值。


0
投票
template<typename T> //Declares a template
void FlipStack(std::stack<T>&tempstack){  //Declares the function 
std::stack<T>stackflip;  //Declares another stack
while(!tempstack.empty()){  //Declares a while statement that will only end when the stack is empty
stackflip.push(tempstack.top());  //Pushes the top of the original stack on the other stack
    tempstack.pop();  //Deletes the top of the stack
}
tempstack = stackflip;  //Makes the original stack equal the other stack
}

-1
投票
void sortStack(struct stack **s)  
{  
if (!isEmpty(*s))  
  {  
    int x = pop(s);  
    sortStack(s);  
    sortedInsert(s, x);  
  }  
}  

void sortedInsert(struct stack **s, int x)  
{  
  if (isEmpty(*s) || x > top(*s))  
  {  
    push(s, x);  
    return;  
  }  
int temp = pop(s);  
sortedInsert(s, x);  
push(s, temp);  
}  
© www.soinside.com 2019 - 2024. All rights reserved.