318319320321322323324325326327328
Hit hit = null; int umCount = 0; int mCount = 0; for(String word : allWords){ char[] chars = word.toCharArray(); hit = _root_.match(chars , 0, chars.length); if(hit.isUnmatch()){ //System.out.println(word); umCount++; }else{ mCount++;
317318319320321322323324325326327
long begintime = System.currentTimeMillis(); Hit hit = null; int umCount = 0; int mCount = 0; for(String word : allWords){ hit = _root_.match(word.toCharArray()); if(hit.isUnmatch()){ System.out.println(word); umCount++; }else{ mCount++;