-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser_code
73 lines (56 loc) · 1.2 KB
/
parser_code
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
#include <iostream>
#include <stack>
#include <string>
#include <vector>
using namespace std;
int main(){
stack<string> function_names;
stack<string> parameters;
int number_of_opens = 0;
int number_of_closes = 0;
string command = "(<- cats_or_dogs dogs)";
(<- cats_or_dogs dogs)
char c;
string function;
string parameter;
for(string::iterator it = command.begin(); it != command.end();it++){
if( *it == '('){
number_of_opens++;
it++;
while(!isspace(*it)){
c = *it;
function += c;
it++;
}
function_names.push(function);
function.clear();
}
else if (!isspace(*it)){
while(!isspace(*it) && *it != ')'){
c = *it;
parameter += c;
it++;
}
parameters.push(parameter);
parameter.clear();
if(*it == ')'){
number_of_closes++;
}
}
}
if( number_of_opens != number_of_closes){
cerr<< "error: number of opens does not equal number of closes" << endl;
}
else{
while(!(function_names.empty())){
cout<<"Function: " << function_names.top()<<endl;
function_names.pop();
}
cout<<"Parameters: ";
while(!(parameters.empty())){
cout<<parameters.top()<<",";
parameters.pop();
}
cout<<endl;
}
}