0

我一直在研究一种将“a+b*cd/e”转换为它的后缀形式的算法。我已经准备好了http://en.wikipedia.org/wiki/Shunting-yard_algorithm wiki,但我的逻辑有问题。当我打印出我的队列时,我得到没有操作符的“abcd e”。似乎没有任何东西被推入我的堆栈?或者,如果是,它不会被推入我的队列。我的队列/堆栈由我创建的双链表类实现。

#include <iostream>
#include "LinkedList.h"
#include "Stack.h"
#include "Queue.h"
using namespace std;

int oper(char c)
{
    switch(c)    {
        case '!':
            return 4;
        case '*':  case '/': case '%':
            return 3;
        case '+': case '-':
            return 2;
        case '=':
            return 1;
    }
    return 0;
}



int main () {

    LinkedList* list = new LinkedList();


    string infix = "a+b*c-d/e";
    Stack *holder = new Stack();
    Queue *newstring = new Queue();
    int length = infix.length();
    char temp;
    char prev;
    for(int i=0; i<length; i++)
    {
        temp = infix[i];
        if((temp == '+') || (temp == '-') || (temp == '*') || (temp == '/'))
        {
            if (holder->isEmpty())
            {
                holder->push(temp);
                prev = temp;
                continue;
            }
            if(oper(temp)<oper(prev))
            {
            newstring->queue(holder->popStack());
            temp = '\0';
            continue;
            }   
            else
            holder->push(temp);
            prev = temp;
        }
        else 
        newstring->queue(temp);

}
while(!holder->isEmpty())
{
    newstring->queue(holder->popStack());
}
newstring->printQueue();



    return 0;
}
4

1 回答 1

1

你的代码部分::

        if(oper(temp)<oper(prev))
        {
        newstring->queue(holder->popStack());
        temp = '\0';
        continue;
        }   

这部分代码根本不会受到影响......输入中提供的字符串“a + b * cd / e”

看到这个::

 if(oper(temp)<oper(prev))

条件是检查前一个运算符相对于变量 temp 中当前扫描的运算符的优先级,但是在前一个 if 语句之外没有语句(堆栈为空的条件)从可用选项中提取或分配上一个变量在堆栈中,因此“+”的初始值用于评估小于“*”和“\”的 if 条件,并且与“-”处于同一级别,但结果不大于第二个 if条件永远不会得到满足,也不会受到打击。

这可能就是为什么当您弹出堆栈时没有任何内容出现时,这就是您获得当前结果的方式。您将需要再次访问代码并进行适当的更改。

希望这会有所帮助,祝您有美好的一天。

于 2013-03-17T09:35:29.227 回答