-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBTreeNode.java
55 lines (45 loc) · 918 Bytes
/
BTreeNode.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/**
* This class represents a BTreeNode
*/
public class BTreeNode
{
static int t; // order of tree
int count;
AccountData key[];
BTreeNode child[];
boolean leaf;
BTreeNode parent;
/**
* This Constructor creates an BTreeNode
* @param int t.
* @param BTreeNode parent.
* @return Nothing.
*/
public BTreeNode(int t, BTreeNode parent)
{
this.t = t;
this.parent = parent;
key = new AccountData[2*t - 1];
child = new BTreeNode[2*t];
leaf = true;
count = 0;
}
/**
* To get key value at index position
* @param int index.
* @return AccountData key[index].
*/
public AccountData getValue(int index)
{
return key[index];
}
/**
* Get given(index) child
* @param int index.
* @return BTreeeNode child[index].
*/
public BTreeNode getChild(int index)
{
return child[index];
}
}