-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTask7.cpp
More file actions
83 lines (81 loc) · 1.4 KB
/
Task7.cpp
File metadata and controls
83 lines (81 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
#include<iostream>
#include<fstream>
#include<sstream>
#include<set>
#include<map>
using namespace std;
set<string> allnonterminal;
multimap<string,string> prod;
set<string>::iterator nt;
multimap<string,string>::iterator p;
bool isNonTerminal(string c)
{
bool flag;
if(c[0] >= 'A' && c[0] <= 'Z')
{
flag = true;
}
else
{
flag = false;
}
return flag;
}
bool checkForNonTerminals(string r)
{
stringstream ss(r);
string word="";
bool flag;
while(ss>>word)
{
if(isNonTerminal(word))
{
flag = true;
}
else
{
flag = false;
}
}
return flag;
}
void getLastNonTerminal(string l,string r)
{
string previous = " ",next = " ";
stringstream ss(r);
while(ss >> next)
{
if(isNonTerminal(next))
{
previous = next;
}
}
string right = r;
if(checkForNonTerminals(right))
{
cout<<"Last non-terminal" <<previous<< "in production | "<<l<<" -> "<<r<<endl;
}
else{
cout<<"No non-terminal is present in production | "<<l<<" -> "<<r<<endl;
}
}
int main()
{
ifstream file;
file.open("cfg1.txt");
string line = "";
while(getline(file,line))
{
string word = "";
int equalIndex = line.find("=");
string LHS = line.substr(0,equalIndex);
string RHS = line.substr(equalIndex+1,line.length());
allnonterminal.insert(LHS);
prod.insert(make_pair(LHS,RHS));
}
file.close();
for(p = prod.begin();p!= prod.end();p++)
{
getLastNonTerminal(p->first,p->second);
}
}