forked from rounakdatta/15CS314J
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleftRecursion.cpp
64 lines (51 loc) · 1.62 KB
/
leftRecursion.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
#include <iostream>
#include <cstdio>
#include <vector>
using namespace std;
struct nTerminal {
char symbol;
int count;
};
string getString(char x) {
string s(1, x);
return s;
}
int main() {
printf("Enter the non-terminals: ");
string nonTerminalsString;
cin >> nonTerminalsString;
vector <nTerminal> nonTerminals;
for (int i = 0; i < nonTerminalsString.length(); i++) {
nTerminal newn;
newn.symbol = nonTerminalsString[i];
nonTerminals.push_back(newn);
}
for (int i = 0; i < nonTerminals.size(); i++) {
printf("\nEnter the no of productions for %c: ", nonTerminals[i].symbol);
cin >> nonTerminals[i].count;
}
vector <string> productions;
for (int i = 0; i < nonTerminals.size(); i++) {
printf("\nEnter the right productions for %c: ", nonTerminals[i].symbol);
for (int j = 0; j < nonTerminals[i].count; j++) {
string prod;
cin >> prod;
productions.push_back(prod);
}
}
for (int i = 0; i < productions.size(); i++) {
string curr = productions[i];
bool recursionExists = false;
if (curr[0] == curr[3]) {
recursionExists = true;
} else {
cout << curr << endl;
continue;
}
string newProduction1 = getString(curr[0]) + "->" + curr.substr(4).substr(1) + getString(curr[0]) + "\'";
string newProduction2 = getString(curr[0]) + "\'->" + curr.substr(4) + getString(curr[0]) + "\'|ε";
cout << newProduction1 << endl;
cout << newProduction2 << endl;
}
return 0;
}