⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 node.java

📁 b+tree树的java实现。 是一个框架
💻 JAVA
字号:
/**
 * Simple Node representation.
 * 
 * @category Architecture of DBMS WS 06/07 - Assignment
 * @author DBIS, University of Konstanz
 */
final class Node {
  /**
   * Node Values (Leaf Values / Key Values for the children nodes).
   */
  int[] values;

  /**
   * Node Array, pointing to the children nodes.
   * This array is not initialized for leaf nodes.
   */
  int[] children;

  /**
   * Number of entries
   * (Rule in B+ Trees:  d <= size <= 2 * d).
   */
  int size;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -