Skip to content

Implements a “Size Binary Search Tree” (SBST). An SBST is like a regular Binary Search Tree, but it is also capable of finding out, given a number j, how many nodes in the tree hold numbers less than or equal to j, and it is capable of doing so in time proportional to the height of the tree. It does so by using an additional field in each node, …

Notifications You must be signed in to change notification settings

jcierpial/SizeBST

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

About

Implements a “Size Binary Search Tree” (SBST). An SBST is like a regular Binary Search Tree, but it is also capable of finding out, given a number j, how many nodes in the tree hold numbers less than or equal to j, and it is capable of doing so in time proportional to the height of the tree. It does so by using an additional field in each node, …

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages