This repository was archived by the owner on Dec 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbaseGramma.cpp
207 lines (189 loc) · 7.5 KB
/
baseGramma.cpp
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
#include "baseGramma.hpp"
const std::string BaseGrammar::Origin = "S";
const std::string BaseGrammar::OriginPro = "Program";
const std::string BaseGrammar::Derive = "->";
const std::string BaseGrammar::Comment = "~";
const std::string BaseGrammar::EndSym = "#";
const std::string BaseGrammar::Epsilon = "$";
const std::string BaseGrammar::Alternative = "|";
const std::string BaseGrammar::TerminalLineBeg = "!";
/**
* @brief 读取文法内容,填入 terminal/unterminal/symbol/derivation
* @param file_path: 文法文件的位置
* @see http://www.cplusplus.com/reference/string/string/getline/
*/
void BaseGrammar::readGramma(const std::string file_path) {
std::ifstream in(file_path);
std::string line_read;
Symbol end(EndSym, Symbol::END, 0);
Symbol ep(Epsilon, Symbol::EPSILON, 1);
// 初始化
this->symbol_arr.emplace_back(end);
this->terminal_set.insert(0);
this->symbol_arr.emplace_back(ep);
// 开始读取
// std::getline from <string>
while(std::getline(in, line_read, '\n')) {
// 是注释 / 空行
if (line_read[0] == '~' || line_read.length() == 0)
continue;
// 这里人为保证一行只有一个推导式
std::vector<std::string> split_res;
split_res = split(line_read, " -> ");
std::for_each(split_res.begin(), split_res.end(), trim);
// 左右分开
std::string left_str = trim(split_res[0]);
std::string right_str = split_res[1];
// 接下来对右侧进行处理:A -> a B b | A C | D d
std::vector<std::string> right_symbols_multi_derives;
right_symbols_multi_derives = split(right_str, " | ");
// 取每一个推导,做处理
for (auto right_symbols : right_symbols_multi_derives) {
// 首先处理所有的非终结符
if (line_read[0] == '!') {
Symbol terminal(right_symbols, Symbol::TERMINAL, this->symbol_arr.size());
// 顺序不能颠倒,因为 getSymIdByName 是在 symbol_arr 里面去找的
this->symbol_arr.emplace_back(terminal);
this->terminal_set.insert(getSymIdByName(right_symbols).first);
}
else {
std::vector<std::string> right_symbol_arr = split(right_symbols, " ");
std::for_each(right_symbol_arr.begin(), right_symbol_arr.end(), trim);
// 新增未出现过的 非终结符
// 先看左边
auto get_res = getSymIdByName(left_str);
Symbol left = (-1 == get_res.first)
? (Symbol(left_str, Symbol::UNTERMINAL, this->symbol_arr.size()))
: (Symbol(left_str, get_res.second, get_res.first));
if (-1 == get_res.first) {
this->symbol_arr.emplace_back(left);
// 因为在 symbol arr 中添加过了,所以可以找到,并且完成添加
this->unterminal_set.insert(getSymIdByName(left_str).first);
}
// 对于右边
Sym_Arr right;
for (const std::string& elem : right_symbol_arr) {
if (-1 == getSymIdByName(elem).first) {
Symbol sym_new(elem, Symbol::UNTERMINAL, this->symbol_arr.size());
this->symbol_arr.emplace_back(sym_new);
this->unterminal_set.insert(getSymIdByName(elem).first);
right.emplace_back(sym_new);
}
else
right.emplace_back(getSymByName(elem));
}
// convert type std::vector to std::set
Derivation new_derive(left, right, this->derivation_set.size());
this->derivation_set.emplace_back(new_derive);
// 初始化第一个推导式
// 这个作为扩展推导式,只能够 S -> Program
// 不能支持推出 S -> A | B | C
// 如果必须推出多个,则要在其上再加一层
if (new_derive.left.name == "S")
this->init_derivation = new_derive.id;
}
}
}
}
std::pair<bool, std::set<int>> BaseGrammar::mergeSet(const std::set<int> first, const std::set<int> second, bool with_epsilon)
{
bool success = false;
if (first == second)
return{ success,first };
auto res = getSymIdByName(Epsilon);
std::set<int> temp_first, temp_second;
temp_first.insert(first.begin(), first.end());
temp_second.insert(second.begin(), second.end());
if (!with_epsilon)
temp_second.erase(res.first);
temp_first.insert(temp_second.begin(), temp_second.end());
if (first.size() < temp_first.size())
success = true;
return{ success,temp_first };
}
void BaseGrammar::calcuSingleUnterminalFirstSet(int unterminal)
{
for (auto derivation : this->derivation_set)
{
if (derivation.left.name == this->symbol_arr[unterminal].name)
{
auto res_left_letter = getSymIdByName(derivation.left.name);
//产生式右边第一个字符为终结符或epsilon时,直接将该字符加入,然后继续查找下一个推导式
if (derivation.right[0].type == Symbol::TERMINAL || derivation.right[0].type == Symbol::EPSILON)
{
this->symbol_arr[res_left_letter.first].FIRST_SET.insert(derivation.right[0].id);
continue;
}
//产生式右边为非终结符
else
{
int count = 0;//记录共存入count个非终结符的first集
for (auto single_right_letter : derivation.right)
{
auto res_right_letter = getSymIdByName(single_right_letter.name);
if (this->symbol_arr[res_right_letter.first].FIRST_SET.size() == 0)
calcuSingleUnterminalFirstSet(res_right_letter.first);
if (single_right_letter.type == Symbol::TERMINAL)
{
this->symbol_arr[res_left_letter.first].FIRST_SET.insert(single_right_letter.id);
break;
}
if (this->symbol_arr[res_right_letter.first].FIRST_SET.count(getSymByName(Epsilon).id))
{
auto ret = this->mergeSet(
this->symbol_arr[res_left_letter.first].FIRST_SET,
this->symbol_arr[res_right_letter.first].FIRST_SET,
false
);
this->symbol_arr[res_left_letter.first].FIRST_SET = ret.second;
count++;
}
else {
auto ret = this->mergeSet(
this->symbol_arr[res_left_letter.first].FIRST_SET,
this->symbol_arr[res_right_letter.first].FIRST_SET,
false
);
this->symbol_arr[res_left_letter.first].FIRST_SET = ret.second;
break;
}
if (count == derivation.right.size())
{
auto res_Epsilon = getSymIdByName(Epsilon);
this->symbol_arr[res_left_letter.first].FIRST_SET.insert(res_Epsilon.first);
}
}
}
}
}
}
void BaseGrammar::calcuAllUnterminalFirstSet()
{
for (auto unterminal_index : this->unterminal_set)
calcuSingleUnterminalFirstSet(unterminal_index);
}
void BaseGrammar::calcuAllTerminalFirstSet()
{
for (auto terminal_index : this->terminal_set)
this->symbol_arr[terminal_index].FIRST_SET.insert(terminal_index);
}
std::set<int> BaseGrammar::calcuSymbolStringFirstSet(std::vector<int> SymbolString)
{
int index = 0;
std::set<int> result; //存储结果的集合
for (auto single_symbol : SymbolString)
{
index++;
auto res = this->mergeSet(
result,
this->symbol_arr[single_symbol].FIRST_SET,
false
);
result = res.second;
if (!this->symbol_arr[single_symbol].FIRST_SET.count(getSymByName(Epsilon).id))
break;
}
if (SymbolString.size() == index)
result.insert(getSymIdByName(Epsilon).first);
return result;
}