Skip to content

Latest commit

 

History

History
6 lines (6 loc) · 428 Bytes

README.md

File metadata and controls

6 lines (6 loc) · 428 Bytes

BST-Book-Analyser

  • A BST (Binary Search Tree) based book Analyser.
  • It can sort the words in the books as per their frequency count or as per their lexographical order.
  • I Created a templated BST from scratch and used it as the base data structure to store words and word frequencies in a different special object.
  • I used OOPs principles to design this.
  • It uses a builtin C++ hashmap as an auxiliary data structure.