Implementation of some data structures in C
not working
insertion working
Ordre 3 : [1, 2]
Ordre 4 : [1, 3]
Ordre 5 : [2, 4]
Ordre 6 : [2, 5]
Ordre 7 : [3, 6]
Ordre X : [(X - 1) / 2
for i in [3, 4, 5, 6, 7]:
print(f"Ordre {i} : [{(i - 1) // 2}, {i - 1}]")
insertion working
just a python implementation of b+tree
Working, implemented with a linked list.
Change macro TYPE
to edit the type. Default is void *
.
Working, implemented with a linked list.