Package com.sohospace.dictionary

Examples of com.sohospace.dictionary.HashBinaryDictionary


  public Dictionary getVocabulary() {
    if (vocabulary == null) {
      synchronized (this) {
        if (vocabulary == null) {
          //�����5639�����д����ȡ0x2fff=x^13>8000>8000*0.75=6000>5639
          vocabulary = new HashBinaryDictionary(wordsLoader
              .loadCJKVocabulary().toArray(new String[0]), 0x2fff, 0.75f);
        }
      }
    }
    return vocabulary;
View Full Code Here


   */
  public Dictionary getXchars() {
    if (xchars == null) {
      synchronized (this) {
        if (xchars == null) {
          xchars = new HashBinaryDictionary(wordsLoader.loadCJKXchars()
              .toArray(new String[0]), 256, 0.75f);
        }
      }
    }
    return xchars;
View Full Code Here

   */
  public Dictionary getUnits() {
    if (units == null) {
      synchronized (this) {
        if (units == null) {
          units = new HashBinaryDictionary(wordsLoader.loadCJKUnit()
              .toArray(new String[0]), 1024, 0.75f);
        }
      }
    }
    return units;
View Full Code Here

TOP

Related Classes of com.sohospace.dictionary.HashBinaryDictionary

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.