From fdcdacf5d309744f63639de2be450bddfa8cceca Mon Sep 17 00:00:00 2001 From: Matthew Slowe Date: Sat, 21 Nov 2015 19:54:53 +0000 Subject: [PATCH] oops, missing a file --- uk/org/mafoo/wordbubbles/Lexicon.java | 52 +++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 uk/org/mafoo/wordbubbles/Lexicon.java diff --git a/uk/org/mafoo/wordbubbles/Lexicon.java b/uk/org/mafoo/wordbubbles/Lexicon.java new file mode 100644 index 0000000..5b33a9b --- /dev/null +++ b/uk/org/mafoo/wordbubbles/Lexicon.java @@ -0,0 +1,52 @@ +package uk.org.mafoo.wordbubbles; + +import java.util.*; +import java.io.*; + +public class Lexicon { + + HashMap words = new HashMap(); + HashMap prefixes = new HashMap(); + static final int maxwordlength = 9; + + public Lexicon (ArrayList wordlist) { + for (String word : wordlist) { + if(word.length() > maxwordlength) continue; + word = word.toLowerCase(); + words.put(word, true); + char[] word_a = word.toCharArray(); + String prefix = ""; + for(int i=0; i " + words.containsKey(word)); + return words.containsKey(word); + } + + public boolean checkPrefix(String prefix) { + // System.out.println("Checking prefix: " + prefix + " -> " + prefixes.containsKey(prefix)); + return prefixes.containsKey(prefix); + } + + public static Lexicon loadLexiconFromFile(String file) throws FileNotFoundException, IOException { + FileReader fr = new FileReader(file); + BufferedReader br = new BufferedReader(fr); + String s; + ArrayList strings = new ArrayList(); + while((s = br.readLine()) != null) { + if(s.length() <= maxwordlength) + strings.add(s); + } + fr.close(); + return new Lexicon(strings); + } + + public String toString() { + return "Lexicon object with " + words.size() + " words and " + prefixes.size() + " word prefixes"; + } +} \ No newline at end of file