不知道如何扭转我的堆栈?

时间:2014-10-18 20:12:48

标签: c++ linked-list stack

我正在尝试编写一个使用链接列表实现堆栈的程序,接受来自用户的无限单词,直到输入单词'end',将每个单词推入堆栈,打印给用户,表示您接受了单词和您将要反向列出该句子,并将每个单词弹出给用户,以便它们以与输入相反的顺序显示。 我写了我的代码,但我认为我的pop函数可能有问题,因为它不是以相反的顺序打印。只是我输入信息的顺序,这意味着它没有弹出,对吧?我不确定。

所以我只需要帮助弄清楚如何做 - 将每个单词发送给用户,以便它们以与输入相反的顺序出现

谢谢! 这是我的代码:

#include<iostream>
#include<conio.h>
#include<stdlib.h>
using namespace std;
class node
{
      public:
             class node *next;
             string data;
};

class stack : public node
{
            node *head;
            int tos;
      public:
             stack()
             {
                 tos=-1;
             }
             void push(string x)
             {
                 if (tos < 0 )
                 {
                     head =new node;
                     head->next=NULL;
                     head->data=x;
                     tos ++;
                 }
                 else
                 {
                     node *temp,*temp1;
                     temp=head;

                     tos++;
                     while(temp->next != NULL)
                          temp=temp->next;
                     temp1=new node;
                     temp->next=temp1;
                     temp1->next=NULL;
                     temp1->data=x;
                 }
             }
             void display()
             {
                  node *temp;
                  temp=head;
                  if (tos < 0)
                  {
                      cout <<" stack under flow";
                      return;
                  }
                  while(temp != NULL)
                  {
                      cout <<temp->data<< " ";
                      temp=temp->next;
                  }
              }
              void pop()
              {
                  node *temp;
                  temp=head;
                  if( tos < 0 )
                  {
                      cout <<"stack under flow";
                      return;
                  }
                  tos--;
                  while(temp->next->next!=NULL)
                  {
                      temp=temp->next;
                  }
                  temp->next=NULL;
              }    
};
main()
{
    stack s1;
    string input;

    while (input != "end"){
        cout <<"\n enter a element";
        cin >> input;
        s1.push(input);
    }
    s1.pop();


    s1.display();

    exit(0);    
    return (0);
}

1 个答案:

答案 0 :(得分:-1)

int display(node * head)
{
      if(head)
      {
            display(head->next);
            cout<< head->data <<endl;
      }
}

此显示功能将以相反的顺序打印您的堆栈。