Skip to content

Commit a72b49d

Browse files
committed
Wrap up
1 parent 94825ee commit a72b49d

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

C4380Project/src/BPlusTreeNode/BPlusTreeNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ public void insertFront(IntNode[] myNode,IntNode node){
485485
myNode[0] = node;
486486
}
487487

488-
//insert elemet into first null position of array
488+
// insert elemet into first null position of array
489489
public void insertArray(IntNode[] myNode,IntNode node){
490490
for(int i = 0;i<myNode.length;i++){
491491
if(myNode[i]==null){

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# BPlusTree
1+
# BPlusTree
22
B Plus Tree Data Structure
33
## Usage
44
Target of this Repo is build a basic B Plus Tree data structure written by Java
@@ -12,7 +12,7 @@ Act as a special object that contains a searchKey(Option #2) with file reference
1212
C4380/src/BPlusTreeNode/BPlusTreeNode.java
1313

1414
Act as the main structure of BPlusTree's node
15-
#####Constructor
15+
#####Constructor
1616

1717
order - int - the order of BP tree
1818

@@ -60,7 +60,13 @@ Used for delete the elements in BP Tree.
6060
No returning value
6161
##Environment
6262
Eclipse Luna Release (4.4.0)
63-
63+
6464
Atom 1.5.4
65-
65+
6666
Java Version 1.8.0_74
67+
68+
## ToDo List
69+
70+
#####Use Binary Search instead of linear search in search element/index
71+
#####Re-organize variable/method's name
72+
#####Refactoring - Update Insertion Logic

0 commit comments

Comments
 (0)