gpt4 book ai didi

c# - 解析中缀表达式,同时将分隔符保留为数组元素

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:20:44 25 4
gpt4 key购买 nike

C# 有没有办法让我解析这样的东西:

 "(h1+h2+h3)" into a string array {"(", "h1", "+", "h2", +, "h3", + ")"} ? 

我正在实现调车场算法,我不想因为没有 token 而变通。

Shunting-yard algorithm

编辑:我只是写了我自己的解决方案

private string[] parseExp(string exp)
{
// it will be at least as long as the input string
string[] parsed = new string[exp.Length];
int index = 0;

foreach(char c in exp)
{
if(op.Contains(c))
{
index++;
parsed[index++] += c.ToString();
}else
{
parsed[index] += c.ToString();
}
}

Array.Resize(ref parsed, index + 1);

return parsed;
}

最佳答案

您可以尝试重新排列您的表达式,以便您可以使用 String.Split 操作拆分它,但在这种情况下,您需要知道您的表达式可能具有的所有可能符号。

string input="(h1+h2+h3)";
String newString = input.Replace("("," ( ").Replace(")"," )
"
).Replace("+"," + "); // Reformat string by separating symbols
String[] splitStr = newString.Split(new char[]{' '});
foreach(string x in splitStr)
{
Console.WriteLine(x);
}

关于c# - 解析中缀表达式,同时将分隔符保留为数组元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33050666/

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