Package fr.neatmonster.nocheatplus.utilities.ds.prefixtree.CharPrefixTree

Examples of fr.neatmonster.nocheatplus.utilities.ds.prefixtree.CharPrefixTree.SimpleCharNode


 
  public SimpleCharPrefixTree(){
    super(new NodeFactory<Character, SimpleCharNode>(){
      @Override
      public final SimpleCharNode newNode(final SimpleCharNode parent) {
        return new SimpleCharNode();
      }
    }, new LookupEntryFactory<Character, SimpleCharNode, SimpleCharLookupEntry>() {
      @Override
      public final SimpleCharLookupEntry newLookupEntry(final SimpleCharNode node, final SimpleCharNode insertion, final int depth, final boolean hasPrefix) {
        return new SimpleCharLookupEntry(node, insertion, depth, hasPrefix);
View Full Code Here

TOP

Related Classes of fr.neatmonster.nocheatplus.utilities.ds.prefixtree.CharPrefixTree.SimpleCharNode

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.