私は3つのことを想定しました:
- 数値と演算子の間には常にスペース文字があります
- すべての数値は整数です(他のタイプに簡単に変更できます)
- 数ではないものはすべて演算子です
C#の例:
Math m = new Math();
string p = m.DoStuff("57 x 40 - 14 + 84 ÷ 19");
Console.WriteLine(p);
class Math
{
internal string DoStuff(string p)
{
bool isParOpen = false;
Random rnd = new Random();
StringBuilder result = new StringBuilder();
int i;
string[] stack = p.Split(' ');
foreach (var item in stack)
{
if (int.TryParse(item, out i))
{
if (rnd.Next(2) == 1)
{
result.Append(isParOpen ? string.Format("{0}) ", item) : string.Format("({0} ", item));
isParOpen = !isParOpen;
}
else
{
result.Append(item).Append(" ");
}
}
else
{
result.Append(item).Append(" ");
}
}
if (isParOpen)
{
result.Append(")");
}
return result.ToString();
}
}