Package lupos.datastructures.patriciatrie.disk.nodemanager

Examples of lupos.datastructures.patriciatrie.disk.nodemanager.NodeManager


   *            The size of a page to be stored on disk
   * @throws IOException
   */
  public DBTrieSet(final String fileName, final int bufferSize, final int pageSize) throws IOException {
    super();
    this.nodeManager = new NodeManager(this, fileName, bufferSize, pageSize);
   
    if (this.nodeManager.isEmpty(1)) {
      this.setRootNode(null);
    }
    else {
View Full Code Here


   * @param mode the mode of this trie
   * @throws IOException
   */
  public DBTrieBag(final String fileName, final int bufferSize, final int pageSize) throws IOException {
    super();
    this.nodeManager = new NodeManager(this, fileName, bufferSize, pageSize);
   
    if (this.nodeManager.isEmpty(1)) {
      this.setRootNode(null);
    }
    else {
View Full Code Here

TOP

Related Classes of lupos.datastructures.patriciatrie.disk.nodemanager.NodeManager

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.