-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.c
141 lines (129 loc) · 2.82 KB
/
main.c
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
#include "common.h"
#include "table.c"
#define explen 100
struct rule{
char c;
int n;
};
struct rule* rules;
int* append_int(int n, int *arr, int *p);
int getReduction(int k);
char getRedChar(int k);
void printStack(int* stack, int n);
struct rule* appendRule(struct rule r, struct rule* _rules, int p){
if(p>0 && p%5==0){
struct rule* array = (struct rule*)malloc((p+5)*sizeof(struct rule));
for(int i=0; i<p; ++i){
array[i] = _rules[i];
}
array[p] = r;
return array;
}
_rules[p] = r;
return _rules;
}
int main(){
int num_rules;
printf("How many rules are there ?: ");
scanf("\n%d", &num_rules);
printf("Enter rules properties: left(symbol) right(count). Eg. {A->Aa}=>{A 2}");
rules = (struct rule*)malloc(5*sizeof(struct rule));
char lhs; int rhs;
struct rule r;
for(int i=0; i<num_rules; ++i){
scanf("\n%c %d", &lhs, &rhs);
r.c = lhs;
r.n = rhs;
rules = appendRule(r, rules, i);
}
struct lr_table* lrt = CreateTable();
// PrintTable(lrt);
PrintTableNice(lrt);
// Scan expression
char expr[explen];
scanf("%s", expr);
printf("Expression: %s\n", expr);
char c;
int i,j;
int state = 0;
struct action act;
int* stack = (int*)malloc(5*sizeof(int));
int stack_ptr = 1;
int red;
stack[0] = state;
printf("stack: ");
printStack(stack, stack_ptr);
for(i=0; expr[i]!='\0'; ++i){
c = expr[i];
j = char_to_col(c, lrt->at.symbols, lrt->num_term);
act = lrt->at.table[state][j];
switch (act.type)
{
case t_accept:
printf("Accepted\n");
return 0;
break;
case t_shift:
printf("shift: s%d\n", act.value);
state = act.value;
stack = append_int(c, stack, &stack_ptr);
stack = append_int(state, stack, &stack_ptr);
printf("stack: ");
printStack(stack, stack_ptr);
break;
case t_reduce:
printf("Rduce: r%d\n", act.value);
red = getReduction(act.value);
c = getRedChar(act.value);
stack_ptr -= red*2;
if(stack_ptr<0){
printf("Error!\n");
return 0;
}
stack = append_int(c, stack, &stack_ptr);
j = char_to_col(c, lrt->gt.symbols, lrt->num_nonterm);
state = stack[stack_ptr-2];
state = lrt->gt.table[state][j];
stack = append_int(state, stack, &stack_ptr);
printf("stack: ");
printStack(stack, stack_ptr);
i--;
break;
default:
printf("Error!\n");
return 0;
break;
}
}
return 0;
}
int* append_int(int n, int *arr, int *p){
if(*p>0 && *p%5==0){
int* a = (int*)malloc((*p+5)*sizeof(int));
for(int i=0; i<*p; ++i){
a[i] = arr[i];
}
a[*p] = n;
free(arr);
*p = *p + 1;
return a;
}
arr[*p] = n;
*p = *p + 1;
return arr;
}
int getReduction(int k){
return rules[k-1].n;
}
char getRedChar(int k){
return rules[k-1].c;
}
void printStack(int* stack, int n){
for(int i=0; i<n; ++i){
if((i&1)==0){
printf("%d ", stack[i]);
}
else printf("%c ", stack[i]);
}
printf("\n");
}