Skip to content

kellydx/BinarySearchTree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

BinarySearchTree

Search for strings using binary search tree

When strings are added to the tree, they are wrapped inside a node object that holds the string, the frequency (number of times) with which that string has been added to the tree, and references to two other nodes (children).
The strings are stored in a Binary Search Tree.

  1. BinarySearchTree – This will serve as container class. It needs to have functionality for adding nodes and searching (traversing) the tree.
  2. Node – Each node object references two children and also contain the string entered by the user and the frequency of that string.

About

search for strings using binary search tree

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages