我写了一个带有结构图的rpn。
最新问题:它现在不能正常工作。
如果输入字符串是“5 + ((1 + 2) * 4) - 3”
我的输出是:5 1 2 + 4 * 3 - +
我必须得到这个结果: 5 1 2 + 4 * + 3 -
编辑了源
*那是原来的问题,但对我有帮助,现在修复了原来的错误: * ,
在循环或 int i = 12 的调试中,c 值为 0\0 或其他 值,并且该值作为 '(' 括号添加到输出(名称:公式)字符串。我不知道为什么。 最后一个'-'操作符号,不要添加到(或不看)输出字符串(公式)的末尾我错误地由 '(' 引起了这个问题。 我尝试了其他字符串输入值的程序,但是总是在我的字符串中添加一个“(”,我不知道为什么......我看到它与括号的数量无关。总是只有一个“(”添加到我的字符串...... *)是的,在英语 LengyelFormula = rpn(它是匈牙利语)*
static void Main(string[] args)
{
String str = "5 + ( ( 1 + 2 ) * 4 ) −3";
String result=LengyelFormaKonvertalas(str);
Console.WriteLine(result.ToString());
Console.ReadLine();
}
static String LengyelFormaKonvertalas(String input) // this is the rpn method
{
Stack stack = new Stack();
String str = input.Replace(" ",string.Empty);
StringBuilder formula = new StringBuilder();
for (int i = 0; i < str.Length; i++)
{
char x=str[i];
if (x == '(')
stack.Push(x);
else if (IsOperandus(x)) // is it operand
{
formula.Append(x);
}
else if (IsOperator(x)) // is it operation
{
if (stack.Count>0 && (char)stack.Peek()!='(' && Prior(x)<=Prior((char)stack.Peek()) )
{
char y = (char)stack.Pop();
formula.Append(y);
}
if (stack.Count > 0 && (char)stack.Peek() != '(' && Prior(x) < Prior((char)stack.Peek()))
{
char y = (char)stack.Pop();
formula.Append(y);
}
stack.Push(x);
}
else
{
char y=(char)stack.Pop();
if (y!='(')
{
formula.Append(y);
}
}
}
while (stack.Count>0)
{
char c = (char)stack.Pop();
formula.Append(c);
}
return formula.ToString();
}
static bool IsOperator(char c)
{
return (c=='-'|| c=='+' || c=='*' || c=='/');
}
static bool IsOperandus(char c)
{
return (c>='0' && c<='9' || c=='.');
}
static int Prior(char c)
{
switch (c)
{
case '=':
return 1;
case '+':
return 2;
case '-':
return 2;
case '*':
return 3;
case '/':
return 3;
case '^':
return 4;
default:
throw new ArgumentException("Rossz paraméter");
}
}
}