Skip to content

VirajAgarwal1/b_tree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

B-Tree Implementation in Go

B-Trees are amazing Trees variant with multiple useful feature which are highlighted when working with disk storage. It has the same time but a bit worse space complexity than Binary Search Trees (BSTs). It's space increases in the same order as BSTs, but in practice it takes up more space than needed, due to much extra space stored than used.

Complexity Analysis

  1. Time (for all operations): O(log N)
  2. Space: O(N)

About

Implmentation of B-Trees in Golang.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages