-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMathParser.cs
More file actions
254 lines (226 loc) · 6.14 KB
/
Copy pathMathParser.cs
File metadata and controls
254 lines (226 loc) · 6.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Globalization;
namespace Antropod.MathParser
{
/*
* !! Может не соответствовать коду !!
* <number> = <digit><digit>*[.<digit>*]
* <variable> = <letter> (<letter> | <digit>)*
* <mulop> = "*" | "/"
* <addop> = "+" | "-"
* <expression> = [<addop>] <term> (<addop> <term>)*
* <factor> = "(" <expression> ")" | <variable> | <number>
* <term> = <factor> (<mulop> <factor>)*
*/
public class ParserException: Exception
{
public ParserException(string message)
: base(message)
{ }
}
public class MathParser
{
private string expression;
private int position;
private char look;
public readonly Dictionary<string, double> variables
= new Dictionary<string, double>();
public delegate double Function(double x);
public readonly Dictionary<string, Function> functions
= new Dictionary<string, Function>();
public void InitBuiltinFunctions()
{
functions["id"] = x => x;
functions["log"] = Math.Log;
functions["log10"] = Math.Log10;
functions["abs"] = Math.Abs;
functions["exp"] = Math.Exp;
}
public static int CharToInt(char c)
{
return Convert.ToInt32(c) - Convert.ToInt32('0');
}
private bool IsDigit(char c)
{
return char.IsDigit(c);
}
private bool IsAlpha(char c)
{
return char.IsLetter(c);
}
private static bool IsAddop(char c)
{
return "+-".Contains(c);
}
private bool IsMulop(char c)
{
return "*/".Contains(c);
}
private bool IsWhiteSpace(char c)
{
return Char.IsWhiteSpace(c);
}
private void Expected(string what)
{
throw new ParserException(what + " expected");
}
private void SkipWhiteSpace()
{
while (IsWhiteSpace(look))
{
GetChar();
}
}
private double GetNum()
{
string result = "";
if (!IsDigit(look)) Expected("Number");
while (IsDigit(look))
{
result += look;
GetChar();
}
if (look == '.')
{
result += look;
GetChar();
while (IsDigit(look))
{
result += look;
GetChar();
}
}
SkipWhiteSpace();
return double.Parse(result, CultureInfo.InvariantCulture.NumberFormat);
}
private string GetName()
{
string result = "";
if (!IsAlpha(look)) Expected("Name");
while (IsDigit(look) || IsAlpha(look))
{
result += look;
GetChar();
}
SkipWhiteSpace();
return result;
}
private char Read()
{
if (position < expression.Length)
return expression[position++];
return '\0';
}
private void GetChar()
{
look = Read();
}
private void Match(char c)
{
if (look == c)
{
GetChar();
SkipWhiteSpace();
}
else
Expected(string.Format("'{0}'", c));
}
public double Expression()
{
double result = 0;
if (IsAddop(look))
result = 0;
else
result = Term();
while (IsAddop(look))
{
switch (look)
{
case '+':
Match('+');
result += Term();
break;
case '-':
Match('-');
result -= Term();
break;
default:
throw new Exception();
}
}
return result;
}
public double Term()
{
double result = Factor();
while (IsMulop(look))
{
switch (look)
{
case '*':
Match('*');
result *= Factor();
break;
case '/':
Match('/');
result /= Factor();
break;
default:
throw new Exception();
}
}
return result;
}
public double Factor()
{
double result;
if (look == '(')
{
Match('(');
result = Expression();
Match(')');
}
else if (IsAlpha(look))
{
var name = GetName();
if (look == '(')
{
Match('(');
result = functions[name]( Expression() );
Match(')');
}
else
result = variables[name];
}
else
result = GetNum();
return result;
}
public MathParser(string expression)
{
InitBuiltinFunctions();
this.expression = expression;
Reset();
}
public void Reset()
{
position = 0;
GetChar();
SkipWhiteSpace();
}
public double Parse()
{
Reset();
return Expression();
}
public static double ParseExpression(string expression)
{
return new MathParser(expression).Parse();
}
}
}