Skip to content

Commit f0c3fc9

Browse files
committed
tmp
1 parent 935a096 commit f0c3fc9

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package simpledb.index.btree2
2+
3+
import simpledb.query.Constant
4+
5+
class BTree {
6+
fun search(key: Constant): BottomInternalNode {
7+
TODO()
8+
}
9+
10+
fun insert(leaf: Leaf) {
11+
TODO()
12+
}
13+
14+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package simpledb.index.btree2
2+
3+
class BottomInternalNode {
4+
fun delete(idx: Int) {
5+
TODO()
6+
}
7+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package simpledb.index.btree2
2+
3+
class Leaf {
4+
}

0 commit comments

Comments
 (0)