Skip to content

Commit 5005c28

Browse files
committed
Added B-Tree
1 parent 4e672f8 commit 5005c28

File tree

17 files changed

+1849
-0
lines changed

17 files changed

+1849
-0
lines changed

BTree/BTree.playground/Contents.swift

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
//: Playground - noun: a place where people can play
2+
3+
import Foundation
4+
5+
let bTree = BTree<Int, Int>(order: 1)!
6+
7+
bTree.insertValue(1, forKey: 1)
8+
bTree.insertValue(2, forKey: 2)
9+
bTree.insertValue(3, forKey: 3)
10+
bTree.insertValue(4, forKey: 4)

0 commit comments

Comments
 (0)