wordbubbles/main.java

67 lines
1.8 KiB
Java
Raw Permalink Normal View History

2015-11-15 06:53:54 +00:00
import java.io.*;
import java.util.*;
import uk.org.mafoo.wordbubbles.*;
class main {
public static void main(String[] args) throws IOException {
2015-11-21 19:24:24 +00:00
Lexicon words = Lexicon.loadLexiconFromFile(args[0]);
2015-11-21 19:48:16 +00:00
// System.out.println(words);
2015-11-15 06:53:54 +00:00
// String[] testwords = new String[]{"test", "amit", "ppp", "zebra"};
// for (String w : testwords) {
// System.out.println(w + "? " + words.checkWord(w) + " / " + words.checkPrefix(w));
// }
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String s;
ArrayList<ArrayList<Character>> grid = new ArrayList<ArrayList<Character>>();
2015-11-15 07:19:55 +00:00
HashMap<Integer, Object> hunted = null;
2015-11-15 06:53:54 +00:00
while ((s = in.readLine()) != null && s.length() != 0) {
2015-11-15 07:19:55 +00:00
if(s.startsWith("#")) {
hunted = new HashMap<Integer, Object>();
String[] hunted_input = s.split("\\s+");
for ( int i=1; i<hunted_input.length; i++ ) {
hunted.put(new Integer(hunted_input[i]), true);
}
} else {
ArrayList<Character> row = new ArrayList<Character>();
for ( char c : s.toLowerCase().toCharArray() ) {
row.add(new Character(c));
}
grid.add(row);
2015-11-15 06:53:54 +00:00
}
}
// for ( ArrayList<Character> row : grid ) {
// for (Character c : row) {
// System.out.print((c != null ? c : " ") + " ");
// }
// System.out.println(".");
// }
Prison prison = new Prison(grid);
2015-11-21 19:48:16 +00:00
// System.out.println(prison);
2015-11-15 06:53:54 +00:00
2015-11-21 19:24:24 +00:00
ArrayList<LinkedHashSet<Cell>> found = prison.search(words);
for ( LinkedHashSet<Cell> w : found ) {
2015-11-15 07:19:55 +00:00
if(hunted != null) {
2015-11-21 19:24:24 +00:00
if( hunted.containsKey(new Integer(w.size())) ) {
2015-11-21 19:48:16 +00:00
String str = "";
for ( Cell letter : w ) {
str += letter;
}
System.out.println (str);
2015-11-15 07:19:55 +00:00
}
} else {
2015-11-21 19:48:16 +00:00
String str = "";
for ( Cell letter : w ) {
str += letter;
}
System.out.println(str);
2015-11-15 07:19:55 +00:00
}
}
2015-11-15 06:53:54 +00:00
// System.out.println(prison.getNeighbours(prison.getCell(0,2)));
}
}