Skip to content

Latest commit

History

6 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

BinarySearchTree

Algorithms and Data Structures project

Description

Binary Search Tree (BST), also called an ordered or sorted binary tree, is a rooted binary tree data structure with the key of each internal node being greater than all the keys in the respective node's left subtree and less than the ones in its right subtree.

Usage

# creatingnewtreeBSTbst = newBST();
# insertingnumber5ontree.
bst.insert(5);
# deletingnumber5fromtree.
bst.delete(5);

License

MIT

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages