forked from mynttt/CYK-algorithm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CYK.java
237 lines (216 loc) · 8.92 KB
/
CYK.java
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
import java.io.*;
import java.util.*;
public class CYK{
public static String word;
public static String startingSymbol;
public static boolean isTokenWord = false;
public static ArrayList<String> terminals = new ArrayList<String>();
public static ArrayList<String> nonTerminals = new ArrayList<String>();
public static TreeMap<String,ArrayList<String>> grammar = new TreeMap<>();
public static void main(String[] args){
if(args.length < 2){
System.out.println("Usage: java CYK <File> <Word>.");
System.exit(1);
}else if (args.length > 2){
isTokenWord = true;
}
doSteps(args);
}
public static void doSteps(String[] args){
parseGrammar(args);
String[][] cykTable = createCYKTable();
printResult(doCyk(cykTable));
}
public static void parseGrammar(String[] args){
Scanner input = openFile(args[0]);
ArrayList<String> tmp = new ArrayList<>();
int line = 2;
word = getWord(args);
startingSymbol = input.next();
input.nextLine();
while(input.hasNextLine() && line <= 3){
tmp.addAll(Arrays.<String>asList(toArray(input.nextLine())));
if(line == 2) { terminals.addAll(tmp); }
if(line == 3) { nonTerminals.addAll(tmp); }
tmp.clear();
line++;
}
while(input.hasNextLine()){
tmp.addAll(Arrays.<String>asList(toArray(input.nextLine())));
String leftSide = tmp.get(0);
tmp.remove(0);
grammar.put(leftSide, new ArrayList<String>());
grammar.get(leftSide).addAll(tmp);
tmp.clear();
}
input.close();
}
public static String getWord(String[] args){
if(!isTokenWord) { return args[1]; }
String[] argsWithoutFile = new String[args.length - 1];
for(int i = 1; i < args.length; i++){
argsWithoutFile[i-1] = args[i];
}
return toString(argsWithoutFile);
}
public static void printResult (String[][] cykTable){
System.out.println("Word: " + word);
System.out.println("\nG = (" + terminals.toString().replace("[", "{").replace("]", "}")
+ ", " + nonTerminals.toString().replace("[", "{").replace("]", "}")
+ ", P, " + startingSymbol + ")\n\nWith Productions P as:");
for(String s: grammar.keySet()){
System.out.println(s + " -> " + grammar.get(s).toString().replaceAll("[\\[\\]\\,]", "").replaceAll("\\s", " | "));
}
System.out.println("\nApplying CYK-Algorithm:\n");
drawTable(cykTable);
}
public static void drawTable(String[][] cykTable){
int l = findLongestString(cykTable) + 2;
String formatString = "| %-" + l + "s ";
String s = "";
StringBuilder sb = new StringBuilder();
//Building Table Structure Modules
sb.append("+");
for(int x = 0; x <= l + 2; x++){
if(x == l + 2){
sb.append("+");
}else{
sb.append("-");
}
}
String low = sb.toString();
sb.delete(0, 1);
String lowRight = sb.toString();
//Print Table
for(int i = 0; i < cykTable.length; i++){
for(int j = 0; j <= cykTable[i].length; j++){
System.out.print((j == 0) ? low : (i <= 1 && j == cykTable[i].length - 1) ? "" : lowRight);
}
System.out.println();
for(int j = 0; j < cykTable[i].length; j++){
s = (cykTable[i][j].isEmpty()) ? "-" : cykTable[i][j];
System.out.format(formatString, s.replaceAll("\\s", ","));
if(j == cykTable[i].length - 1) { System.out.print("|"); }
}
System.out.println();
}
System.out.println(low+"\n");
//Step 4: Evaluate success.
if(cykTable[cykTable.length-1][cykTable[cykTable.length-1].length-1].contains(startingSymbol)){
System.out.println("The word \"" + word + "\" is an element of the CFG G and can be derived from it.");
}else{
System.out.println("The word \"" + word + "\" is not an element of the CFG G and can not be derived from it.");
}
}
public static int findLongestString(String[][] cykTable){
int x = 0;
for(String[] s : cykTable){
for(String d : s){
if(d.length() > x){ x = d.length(); }
}
}
return x;
}
//Jagged Array for the Algorithm
public static String[][] createCYKTable (){
int length = isTokenWord ? toArray(word).length : word.length();
String[][] cykTable = new String[length + 1][];
cykTable[0] = new String[length];
for(int i = 1; i < cykTable.length; i++){
cykTable[i] = new String[length - (i - 1)];
}
for(int i = 1; i < cykTable.length; i++){
for(int j = 0; j < cykTable[i].length; j++){
cykTable[i][j] = "";
}
}
return cykTable;
}
public static String[][] doCyk(String[][] cykTable){
//Step 1: Fill header row
for(int i = 0; i < cykTable[0].length; i++){
cykTable[0][i] = manageWord(word, i);
}
//Step 2: Get productions for terminals
for(int i = 0; i < cykTable[1].length; i++){
String[] validCombinations = checkIfProduces(new String[] {cykTable[0][i]});
cykTable[1][i] = toString(validCombinations);
}
if(word.length() <= 1) { return cykTable; }
//Step 3: Get productions for subwords with the length of 2
for(int i = 0; i < cykTable[2].length; i++){
String[] downwards = toArray(cykTable[1][i]);
String[] diagonal = toArray(cykTable[1][i+1]);
String[] validCombinations = checkIfProduces(getAllCombinations(downwards, diagonal));
cykTable[2][i] = toString(validCombinations);
}
if(word.length() <= 2){ return cykTable; }
//Step 3: Get productions for subwords with the length of n
TreeSet<String> currentValues = new TreeSet<String>();
for(int i = 3; i < cykTable.length; i++){
for(int j = 0; j < cykTable[i].length; j++){
for(int compareFrom = 1; compareFrom < i; compareFrom++){
String[] downwards = cykTable[compareFrom][j].split("\\s");
String[] diagonal = cykTable[i-compareFrom][j+compareFrom].split("\\s");
String[] combinations = getAllCombinations(downwards, diagonal);
String[] validCombinations = checkIfProduces(combinations);
if(cykTable[i][j].isEmpty()){
cykTable[i][j] = toString(validCombinations);
}else{
String[] oldValues = toArray(cykTable[i][j]);
ArrayList<String> newValues = new ArrayList<String>(Arrays.asList(oldValues));
newValues.addAll(Arrays.asList(validCombinations));
currentValues.addAll(newValues);
cykTable[i][j] = toString(currentValues.toArray(new String[currentValues.size()]));
}
}
currentValues.clear();
}
}
return cykTable;
}
public static String manageWord(String word, int position){
if(!isTokenWord){ return Character.toString(word.charAt(position)); }
return toArray(word)[position];
}
public static String[] checkIfProduces(String[] toCheck){
ArrayList<String> storage = new ArrayList<>();
for(String s : grammar.keySet()){
for(String current : toCheck){
if(grammar.get(s).contains(current)){
storage.add(s);
}
}
}
if(storage.size() == 0) { return new String[] {}; }
return storage.toArray(new String[storage.size()]);
}
public static String[] getAllCombinations(String[] from, String[] to){
int length = from.length * to.length;
int counter = 0;
String[] combinations = new String[length];
if(length == 0){ return combinations; };
for(int i = 0; i < from.length; i++){
for(int j = 0; j < to.length; j++){
combinations[counter] = from[i] + to[j];
counter++;
}
}
return combinations;
}
public static String toString(String[] input){
return Arrays.toString(input).replaceAll("[\\[\\]\\,]", "");
}
public static String[] toArray(String input){
return input.split("\\s");
}
public static Scanner openFile(String file){
try{
return new Scanner(new File(file));
}catch(FileNotFoundException e){
System.out.println("Error: Can't find or open the file: " + file + ".");
System.exit(1);
return null;
}
}
}