Skip to content

1somniak/data-structures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

data-structures

Implementation of some data structures in C

avl-tree

not working

b+tree

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}]")

htable

insertion working

python

just a python implementation of b+tree

stack

Working, implemented with a linked list. Change macro TYPE to edit the type. Default is void *.

queue

Working, implemented with a linked list.

About

Implementation of some data structures in C

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published