-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExpression.c
More file actions
111 lines (109 loc) · 1.4 KB
/
Expression.c
File metadata and controls
111 lines (109 loc) · 1.4 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
#include "Expression.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
bool isDigit(char symbol)
{
return symbol >= '0' && symbol <= '9';
}
bool isTheStringAGroup(char* string)
{
const int stringLength = strlen(string);
int state = 0;
for (int i = 0; i < stringLength + 1; i++)
{
switch (state)
{
case 0:
{
if (isDigit(string[i]))
{
state = 1;
break;
}
return false;
}
case 1:
{
if (isDigit(string[i]))
{
state = 2;
break;
}
return false;
}
case 2:
{
if (string[i] == '.')
{
state = 3;
break;
}
return false;
}
case 3:
{
if (string[i] == 'B' || string[i] == 'M' || string[i] == 'S')
{
state = 4;
break;
}
return false;
}
case 4:
{
if (isDigit(string[i]))
{
state = 5;
break;
}
return false;
}
case 5:
{
if (isDigit(string[i]))
{
state = 6;
break;
}
return false;
}
case 6:
{
if (string[i] == '-')
{
state = 7;
break;
}
return false;
}
case 7:
{
if (string[i] == 'm')
{
state = 8;
break;
}
return false;
}
case 8:
{
if (string[i] == 'm')
{
state = 9;
break;
}
return false;
}
case 9:
{
if (string[i] == '\0')
{
return true;
}
return false;
}
}
}
return false;
}