예제 #1
0
파일: Spelling.java 프로젝트: zzt93/Search
 public static void main(String args[]) throws IOException {
   MyIn in = new MyIn();
   Spelling spelling = Spelling.getInstance();
   while (in.hasNextLine()) {
     System.out.println(spelling.correct(in.nextLine()));
   }
 }
예제 #2
0
파일: Spelling.java 프로젝트: zzt93/Search
 public Spelling(MyIn in) throws IOException {
   while (in.hasNextLine()) {
     String[] split = in.nextLine().split("\t");
     nWords.put(split[0], Double.parseDouble(split[1]));
   }
 }