-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathParser.cs
621 lines (556 loc) · 23.9 KB
/
Parser.cs
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
using System;
using Complex = МатКлассы.Number.Complex;
namespace МатКлассы
{
/// <summary>
/// Парсер для перевода формулы функции в делегат
/// </summary>
public sealed class Parser
{
private string term = "";
/// <summary>
/// Последняя отредактированная формула, по которой построился делегат
/// </summary>
public static string FORMULA { get; private set; } = "";
private double arg = 0;
/// <summary>
/// Конструктор для выражений без переменных (переменная считается нулевой)
/// </summary>
/// <param name="str">Строка формулы</param>
public Parser(string str)
{
Clean(str);
//arg = 0.0;
Nam = Product(term);
}
private void Clean(string str)
{
//Обработка входной строки
foreach (char ch in str)//убрать пробелы и всякие знаки, которые не должны быть в формулах
{
if (Char.IsLetterOrDigit(ch) || ch == '^' || ch == '*' || ch == '/' || ch == '+' || ch == '-' || ch == ',' || ch == '(' || ch == ')' || ch == '.')
{
term += ch;
if (ch == '.') term = term.Substring(0, term.Length - 1) + ',';
}
}
//убрать лишние знаки операций
DeleteOperators();
//свести все лишние слова к одной переменной
ToX();
//убрать лишние знаки операций в конце
char chh = term[term.Length - 1];
while (chh == '^' || chh == '*' || chh == '/' || chh == '+' || chh == '-' || chh == ',' || chh == '(' || chh == ',')
{
term = term.Substring(0, term.Length - 1);
chh = term[term.Length - 1];
}
FORMULA = term;
}
private void DeleteOperators()
{
for (int i = 0; i < term.Length - 1; i++)
{
char chh = term[i];
if (chh == '^' || chh == '*' || chh == '/' || chh == '+' || chh == '-' || chh == ',' || chh == ',')
{
char ch = term[i + 1];
while (ch == '^' || ch == '*' || ch == '/' || ch == '+' || ch == '-' || ch == ',' || ch == ',')
{
if (i + 2 < term.Length)
term = term.Substring(0, i + 1) + term.Substring(i + 2, term.Length - i - 2);
else
term = term.Substring(0, i + 1);
if (i + 1 != term.Length) ch = term[i + 1];
else ch = ' ';
}
}
if (chh == ')')
if (Char.IsDigit(term[i + 1]))
term = term.Substring(0, i + 1) + "*" + term.Substring(i + 1, term.Length - i - 1);
}
}
private void ToX()
{
//char[] c=new char[10];
//for (int i = 0; i < 10; i++)
// c[i] = Convert.ToChar(i);
string[] st = term.Split('+', '-', '^', '*', '/', ',', '(', ')');
Array.Sort(st);
st.Show();
for (int i = 0; i < st.Length; i++)
{
string el = st[i];
if (el.Length != 0)
{
bool b = false;
for (int j = 0; j < el.Length; j++)
if (!Char.IsDigit(el[j]))
{
b = true;
break;
}
if (b)
if (el != "sin" && el != "cos" && el != "tan" && el != "acos" && el != "asin"
&& el != "atan" && el != "exp" && el != "log" && el != "abs" && el != "pi"
&& el != "sqrt" && el != "sqr" && el != "cube" && el != "x")
term = term.Replace(el, "x");
}
}
}
private const string info = "Для задания собственной функции требуется ввести строкой её формулу (аналитическое выражение). Выражения должны вводиться в точности так же, как если бы это была часть кода на C#; единственное отличие состоит в том, что вместо записей вида Math.Sin(x) используется sin(x). В качестве аргумента должен исльзоваться 'x'; доступные функции: sin, cos, tan, acos, asin, atan, exp, log, abs, sqrt, sqr, cube. Пример записи готовой функции: cos(x)+sin(x/2)-exp(x*log(x))^3. В случае некорректного ввода программа либо исправит формулу, либо вместо исключения будет использовать нулевую функцию.";
/// <summary>
/// Информация о том, какие функции считываются при парсинге и как и пользоваться
/// </summary>
public static string INFORMATION => info;
/// <summary>
/// Конструктор для выражений с переменными (переменная x)
/// </summary>
/// <param name="x">Значение переменной</param>
/// <param name="str">Строка формулы</param>
public Parser(double x, string str)
{
Clean(str);
arg = x;
ShowT();
Nam = Product(term);
ShowT();
}
/// <summary>
/// Конструктор для выражений с переменными (переменная x)
/// </summary>
/// <param name="x">Значение переменной</param>
/// <param name="str">Строка формулы</param>
public Parser(string s, double x) : this(x, s) { }
private void ShowT()
{
Console.WriteLine($"{term} {Nam} {arg}");
}
//Метод обработки функций и присваивания значения переменной
private double Func(string s)
{
double element = 0.0;
//if (s.Length == 1 && Char.IsLetter(s[0]))
// return element;
string el = "";
foreach (char ch in s)
{
if (!Char.IsLetter(ch) /*|| ch!='x'*/) break;
el += ch;
}
//if (s.Length == el.Length)
// return 0;
if (!IsFunc(el)) element = arg;
else
{
var val = Convert.ToDouble(s.Substring(el.Length));
if (el == "sin") element = Math.Sin(val);
if (el == "cos") element = Math.Cos(val);
if (el == "tan") element = Math.Tan(val);
if (el == "asin") element = Math.Asin(val);
if (el == "acos") element = Math.Acos(val);
if (el == "atan") element = Math.Atan(val);
if (el == "exp") element = Math.Exp(val);
if (el == "ln") element = Math.Log(val);
if (el == "abs") element = Math.Abs(val);
if (el == "sqrt") element = Math.Sqrt(val);
if (el == "sqr") element = Math.Pow(val, 2);
if (el == "cube") element = Math.Pow(val, 3);
if (el == "pi") element = Math.PI;
}
return element;
}
private static bool IsFunc(string el) => !(el != "sin" && el != "cos" && el != "tan" && el != "acos" && el != "asin"
&& el != "atan" && el != "exp" && el != "log" && el != "abs" && el != "pi"
&& el != "sqrt" && el != "sqr" && el != "cube");
//Метод возведения в степень
private double Power(string s)
{
double element;
string el = "";
foreach (char ch in s)
{
if (ch == '^') break;
el += ch;
}
if (Char.IsLetter(el[0])) element = arg;
else element = Convert.ToDouble(el);
if (!s.Substring(el.Length + 1).Equals(String.Empty))
{
element = Math.Pow(element, Element(s.Substring(el.Length + 1)));
}
return element;
}
//Расчет умножения/деления
private double Element(string s)
{
double element;
string el = "";
foreach (char ch in s)
{
if (ch == '*' || ch == '/') break;
el += ch;
}
if (Char.IsLetter(el[0]) && el.IndexOf('^') == -1) element = Func(el);
else
{
if (el.IndexOf('^') == -1) element = Convert.ToDouble(el);
else element = Power(el);
}
if (el.Length < s.Length - 1)
{
if (s[el.Length] == '*') element *= Element(s.Substring(el.Length + 1));
if (s[el.Length] == '/') element /= Element(s.Substring(el.Length + 1));
}
return element;
}
//Входная точка. Выделение элементов
private double Product(string s)
{
int co = 0;
string el = "";
double element;
string s1 = s;
string sstr;
if (s != "" && (s[0] == '+' || s[0] == '-')) co++;
for (int i = co; i < s.Length; i++)
{
if (s[i] == '(')
{
el += Breckets(s.Substring(el.Length + co), out sstr);
s = el + sstr;
co = 0;
i = el.Length;
if (sstr == "") break;
}
if (s[i] == '+' || s[i] == '-') break;
el += s[i];
}
if (s1[0] == '-') element = -Element(el);
else element = Element(el);
if (el.Length < s.Length - 1) element += Product(s.Substring(el.Length + co));
return element;
}
//Обработка выражений в скобках
private string Breckets(string s, out string sstr)
{
int co = 1;
int open = 1;
int quit = 0;
string el = "";
double element;
while (open != quit)
{
if (s[co] == '(')
{
open++;
}
if (s[co] == ')') quit++;
if (open == quit) break;
el += s[co];
co++;
}
if (co < s.Length - 1) sstr = s.Substring(co + 1);
else
{
sstr = "";
}
element = Product(el);
return element.ToString();
}
//Результат
private double Nam { get; set; }
/// <summary>
/// Возвращает функцию по формуле этой функции, где переменной является x
/// </summary>
/// <param name="s">Формула функции</param>
/// <returns></returns>
public static Func<double, double> GetDelegate(string s)
{
Parser p = new Parser(s);
Func<double, double> f = (double x) =>
{
p.arg = x;
p.Nam = p.Product(p.term);
return p.Nam;
};
return f;
}
}
public sealed class ParserComplex
{
private string term = "";
/// <summary>
/// Последняя отредактированная формула, по которой построился делегат
/// </summary>
public static string FORMULA { get; private set; } = "";
private Complex arg = 0;
/// <summary>
/// Конструктор для выражений без переменных (переменная считается нулевой)
/// </summary>
/// <param name="str">Строка формулы</param>
public ParserComplex(string str)
{
Clean(str);
//arg = 0.0;
Nam = Product(term);
}
private void Clean(string str)
{
//Обработка входной строки
foreach (char ch in str)//убрать пробелы и всякие знаки, которые не должны быть в формулах
{
if (Char.IsLetterOrDigit(ch) || ch == '^' || ch == '*' || ch == '/' || ch == '+' || ch == '-' || ch == ',' || ch == '(' || ch == ')' || ch == '.')
{
term += ch;
if (ch == '.') term = term.Substring(0, term.Length - 1) + ',';
}
}
//убрать лишние знаки операций
DeleteOperators();
//свести все лишние слова к одной переменной
ToX();
//убрать лишние знаки операций в конце
char chh = term[term.Length - 1];
while (chh == '^' || chh == '*' || chh == '/' || chh == '+' || chh == '-' || chh == ',' || chh == '(' || chh == ',')
{
term = term.Substring(0, term.Length - 1);
chh = term[term.Length - 1];
}
FORMULA = term;
}
private void DeleteOperators()
{
for (int i = 0; i < term.Length - 1; i++)
{
char chh = term[i];
if (chh == '^' || chh == '*' || chh == '/' || chh == '+' || chh == '-' || chh == ',' || chh == '.')
{
char ch = term[i + 1];
while (ch == '^' || ch == '*' || ch == '/' || ch == '+' || ch == '-' || ch == ',' || ch == '.')
{
if (i + 2 < term.Length)
term = term.Substring(0, i + 1) + term.Substring(i + 2, term.Length - i - 2);
else
term = term.Substring(0, i + 1);
if (i + 1 != term.Length) ch = term[i + 1];
else ch = ' ';
}
}
if (chh == ')' && Char.IsDigit(term[i + 1]))
term = term.Substring(0, i + 1) + "*" + term.Substring(i + 1, term.Length - i - 1);
}
}
private void ToX()
{
//char[] c=new char[10];
//for (int i = 0; i < 10; i++)
// c[i] = Convert.ToChar(i);
string[] st = term.Split('+', '-', '^', '*', '/', ',', '(', ')');
Array.Sort(st);
//st.Show();
for (int i = 0; i < st.Length; i++)
{
string el = st[i];
if (el.Length != 0)
{
bool b = false;
for (int j = 0; j < el.Length; j++)
if (!Char.IsDigit(el[j]))
{
b = true;
break;
}
if (b)
if (!IsFunc(el))
term = term.Replace(el, "z");
}
}
}
private const string info = "Для задания собственной функции требуется ввести строкой её формулу (аналитическое выражение). Выражения должны вводиться в точности так же, как если бы это была часть кода на C#; единственное отличие состоит в том, что вместо записей вида Math.Sin(x) используется sin(x). В качестве аргумента должен исльзоваться 'x'; доступные функции: sin, cos, tan, acos, asin, atan, exp, log, abs, sqrt, sqr, cube. Пример записи готовой функции: cos(x)+sin(x/2)-exp(x*log(x))^3. В случае некорректного ввода программа либо исправит формулу, либо вместо исключения будет использовать нулевую функцию.";
/// <summary>
/// Информация о том, какие функции считываются при парсинге и как и пользоваться
/// </summary>
public static string INFORMATION => info;
/// <summary>
/// Конструктор для выражений с переменными (переменная x)
/// </summary>
/// <param name="z">Значение переменной</param>
/// <param name="str">Строка формулы</param>
public ParserComplex(Complex x, string str)
{
Clean(str);
arg = x;
ShowT();
Nam = Product(term);
ShowT();
}
/// <summary>
/// Конструктор для выражений с переменными (переменная x)
/// </summary>
/// <param name="z">Значение переменной</param>
/// <param name="str">Строка формулы</param>
public ParserComplex(string s, Complex x) : this(x, s) { }
private void ShowT() => Console.WriteLine($"{term} {Nam} {arg}");
private static bool IsFunc(string el) => !(el != "sin" && el != "cos" && el != "Im" && el != "Re" && el != "ch"
&& el != "sh" && el != "exp" && el != "ln" && el != "abs" && el != "pi"
&& el != "sqrt" && el != "sqr" && el != "cube" && el != "I");
//Метод обработки функций и присваивания значения переменной
private Complex Func(string s)
{
Complex element = 0.0;
string el = "";
foreach (char ch in s)
{
if (!Char.IsLetter(ch) || ch == 'i' /*|| ch!='x'*/) break;
el += ch;
}
if (!IsFunc(el)) element = arg;
else
{
if (el == "I") element = Complex.I;
else if (el == "pi") element = Math.PI;
else
{
var val = Complex.ToComplex(s.Substring(el.Length));
if (el == "sin") element = Complex.Sin(val);
if (el == "cos") element = Complex.Cos(val);
if (el == "exp") element = Complex.Exp(val);
if (el == "ln") element = Complex.Ln(val);
if (el == "abs") element = val.Abs;
if (el == "sqrt") element = Complex.Sqrt(val);
if (el == "sqr") element = Complex.Pow(val, 2);
if (el == "cube") element = Complex.Pow(val, 3);
if (el == "sh") element = Complex.Sh(val);
if (el == "ch") element = Complex.Ch(val);
if (el == "Re") element = val.Re;
if (el == "Im") element = val.Im;
}
}
return element;
}
//Метод возведения в степень
private Complex Power(string s)
{
Complex element;
string el = "";
foreach (char ch in s)
{
if (ch == '^') break;
el += ch;
}
if (Char.IsLetter(el[0])) element = arg;
else element = Complex.ToComplex(el);
if (s.Length - el.Length > 0)
{
element = Complex.Pow(element, Element(s.Substring(el.Length + 1)).Re);
}
return element;
}
//Расчет умножения/деления
private Complex Element(string s)
{
Complex element;
string el = "";
foreach (char ch in s)
{
if (ch == '*' || ch == '/') break;
el += ch;
}
if (Char.IsLetter(el[0]) && el.IndexOf('^') == -1) element = Func(el);
else
{
if (el.IndexOf('^') == -1) element = Complex.ToComplex(el);
else element = Power(el);
}
if (el.Length < s.Length - 1)
{
if (s[el.Length] == '*') element *= Element(s.Substring(el.Length + 1));
else if (s[el.Length] == '/') element /= Element(s.Substring(el.Length + 1));
}
return element;
}
//Входная точка. Выделение элементов
private Complex Product(string s)
{
int co = 0;
string el = "";
Complex element;
string s1 = s;
string sstr;
if (s.Length > 0 && (s[0] == '+' || s[0] == '-')) co++;
for (int i = co; i < s.Length; i++)
{
if (s[i] == '(')
{
el += Breckets(s.Substring(el.Length + co), out sstr);
s = el + sstr;
co = 0;
i = el.Length;
if (sstr.Equals(string.Empty)) break;
}
if (s[i] == '+' || s[i] == '-') break;
el += s[i];
}
if (s1[0] == '-') element = -Element(el);
else element = Element(el);
if (el.Length < s.Length - 1) element += Product(s.Substring(el.Length + co));
return element;
}
//Обработка выражений в скобках
private string Breckets(string s, out string sstr)
{
int co = 1;
int open = 1;
int quit = 0;
string el = "";
Complex element;
while (open != quit)
{
if (s[co] == '(')
{
open++;
}
if (s[co] == ')') quit++;
if (open == quit) break;
el += s[co];
co++;
}
if (co < s.Length - 1) sstr = s.Substring(co + 1);
else
{
sstr = "";
}
element = Product(el);
return element.ToString();
}
//Результат
private Complex Nam { get; set; }
/// <summary>
/// Возвращает функцию по формуле этой функции, где переменной является x
/// </summary>
/// <param name="s">Формула функции</param>
/// <returns></returns>
public static Func<Complex, Complex> GetDelegate(string s)
{
var p = new ParserComplex(s);
return (Complex x) =>
{
p.arg = x;
p.Nam = p.Product(p.term);
return p.Nam;
};
}
public static Func<Complex, Complex> GetDelegate(string s, out string fm)
{
var p = new ParserComplex(s);
fm = ParserComplex.FORMULA;
return (Complex x) =>
{
p.arg = x;
p.Nam = p.Product(p.term);
return p.Nam;
};
}
}
}