使用堆栈的C ++ HW帮助

时间:2012-04-12 02:43:11

标签: c++

我对如何使用堆栈有点困惑,为什么我甚至会在我编写的代码中使用堆栈。该assingment说编写一个程序,检查用户输入是否良好。这是一个简单的prgram,有三种不同的选择,用户可以选择。 1.基本括号()2。标准括号()[] {}和3.用户定义的括号。主程序唯一要做的就是检查用户输入是否格式正确,并在屏幕上仅显示该消息。

我有一个StackLS.cpp和一个Stack.h文件,我和main.cpp一起使用。我将从下面粘贴下面的示例代码。

StackLS.h

typedef int elemType; // flexible data type

class StackLS
{
 private:
// inner class node

class Node
{
public:
    elemType data; // data portion
    Node *next; // link to the seccessor
}; // end Node

// data members
Node *topItem; // pointer to the top element of this stack

// utilities

       public:
// constructors
StackLS(void); // default constructor
StackLS(const StackLS& aStack); // copy constructor

// observers
bool isEmpty(void) const;
// returns true if this stack is empty
//         false otherwise

bool isFull(void) const;
// returns true if this stack is full
//         false otherwise

elemType top(void) const;
// precondition: this stack is not empty
// returns top element in this stack

// transformers
void push(const elemType& item);
// precondition: this stack is not full
// adds item to this stack

void pop(void);
// removes top element from this stack if exist
// remains empty otherwise

void makeEmpty(void);
// makes this stack empty

// destructor
~StackLS(void);
}; // end StackLS

StackLS.cpp

     // constructors
      StackLS::StackLS(void)
     // default constructor
     {
topItem = 0;
      } // end default constructor

        StackLS::StackLS(const StackLS& aStack)
     // copy constructor
       {
       } // end copy constructor

      // observers
       bool StackLS::isEmpty(void) const
       // returns true if this stack is empty
       //         false otherwise
        {
  return topItem == 0;
         } // end isEmpty

         bool StackLS::isFull(void) const
       // returns true if this stack is full
       //         false otherwise
        {
return false;
         } // end isFull

         elemType StackLS::top(void) const
      // precondition: this stack is not empty
       // returns top element in this stack
        {
// return (*topItem).data;
return topItem->data;
      } // end top

       // transformers
        void StackLS::push(const elemType& item)
       // precondition: this stack is not full
            // adds item to this stack
           {
Node *newNode = new Node;
newNode->data = item;
newNode->next = topItem;
topItem = newNode;
       } // end push

       void StackLS::pop(void)
       // removes top element from this stack if exist
       // remains empty otherwise
       {
if (topItem != 0)
{
    Node *temp = topItem;
    topItem = topItem->next;
    delete temp;
}
      } // end pop

      void StackLS::makeEmpty(void)
       // makes this stack empty
        {
    while (topItem != 0)
{
    Node *temp = topItem;
    topItem = topItem->next;
    delete temp;
    }
        } // end makeEmpty

         // destructor
          StackLS::~StackLS(void)
         {
//while (!isEmpty())
//  pop();
while (topItem != 0)
{
    Node *temp = topItem;
    topItem = topItem->next;
    delete temp;
}
      } // end destructor

这是我到目前为止的main.cpp。 的的main.cpp

      #include <iostream>
      #include <string>
      #include "StackLS.h"
      using namespace std;

         do {

      int main()
       {
char answer;
char n;
StackLS stack;

cout << " ********** MENU ********** " << endl;
cout << " 1. Basic Brackets () " << endl;
cout << " 2. Standard Brackets ()[]{} " << endl;
cout << " 3. User-Defined brackets " << endl;
cout << " Please enter your choice: " << endl;

switch (choice){
case 1: 
    cout << "Current Setting: () " << endl;
    cout << "Enter your expression followed by a ; : " << endl;
    do {

    cin >> answer;
        while (answer != ;)
    }


          } // end main

        }
while (choice != 'n' || 'N') 

我想知道如何使用我在这个程序中显示的堆栈(main.cpp)。我有点困惑为什么我会使用堆栈和为什么。任何帮助表示赞赏。谢谢。 main.cpp可能不对,但我正在学习,这就是为什么我在这里了解更多。感谢

1 个答案:

答案 0 :(得分:1)

当你看到一个开口支撑时,你将它推到堆叠上。当你看到一个右括号时,你要确保它是堆栈顶部支撑的对应物,然后将其弹出。输入完成后,确保堆栈为空。