Package net.sf.joafip.btreeplus.entity

Examples of net.sf.joafip.btreeplus.entity.LeafPage.tryBalanceOrMerge()


          .getPagePointer(leftLeafPageInParentIndex);
      final LeafPage leftLeafPage = (LeafPage) btreePlusElementMgr
          .getPage(leftLeafPagePosition,
              leafPageParentNonTerminalPage,
              leftLeafPageInParentIndex);
      result = leftLeafPage.tryBalanceOrMerge(leafPage);
      if (result == 0) {
        // leaf page merged in left leaf page
        btreePlusElementMgr.freePage(leafPage.getPageRecord());
        leafPageParentNonTerminalPage.remove(leafPageInParentIndex);
        if (leafPageParentNonTerminalPage.setKey(
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.