gpt4 book ai didi

java - 尝试将中缀转换为后缀返回向后输出

转载 作者:行者123 更新时间:2023-11-30 05:43:52 24 4
gpt4 key购买 nike

我正在创建一个逆波兰表示法计算器,将中缀表达式转换为后缀表达式。然而,我的运算符(operator)正在向后输出。例如,我输入中缀为“1+5*(3*2)”,当我运行程序时,我得到输出“+ 1 * * 3 2 5”,而它应该是“1 5 3 2 + * +”,我不明白为什么。

public class RPNcalc extends Stack
{
public static void main( String[] args)
{
String infix = "1+5*(3*2)";
RPNcalc test = new RPNcalc();
String output = test.ConvertToPostfix(infix);
System.out.println(output);
}


public static String ConvertToPostfix(String infix)
{
Stack stack1 = new Stack();
char ch;
String postfix = "";

for (int i = 0; i < infix.length(); i++)
{
ch = infix.charAt(i);

if (isOperator(ch))
{
postfix = postfix + ch + " ";
}
else if (ch == '(')
{
stack1.push(ch);
}
else if (ch == ')')
{
while (stack1.peek() != '(')
{
postfix = postfix + stack1.pop() + " ";
}
stack1.pop();
}
else
{
while (!stack1.isEmpty() && !(stack1.peek() == '(') && (precedence(ch) <= precedence(stack1.peek())))
{
postfix = postfix + stack1.pop() + " ";
}
stack1.push(ch);
}
}
while (!stack1.isEmpty())
{
postfix = postfix + stack1.pop();
}
return postfix;
}

最佳答案

只有一个“!”缺少:

它必须是:
if( ! isOperator( ch ) ) {…}

输出正确:1 5 3 2 * * +   计算结果为 31

* 和 + 之间的间距有问题
postfix + ' ' + stack1.pop() ?

在这里可以找到关于调车场算法的非常好的描述:
https://en.wikipedia.org/wiki/Shunting-yard_algorithm#Detailed_example

顺便说一句 - 在 Java 中函数名称应该以小写字母开头:
convertToPostfix(字符串中缀)

关于java - 尝试将中缀转换为后缀返回向后输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55174525/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com