An open API service indexing awesome lists of open source software.

https://github.com/vevdokimovm/sem3-lab2-cpp

C++ lab: Binary Search Tree, generic Dictionary and frequency Histogram
https://github.com/vevdokimovm/sem3-lab2-cpp

binary-search-tree cpp data-structures dictionary

Last synced: about 3 hours ago
JSON representation

C++ lab: Binary Search Tree, generic Dictionary and frequency Histogram

Awesome Lists containing this project

README

          

# sem3-lab2-cpp

C++ lab — **Binary Search Tree, Dictionary and Histogram**. Implements a generic BST-based dictionary and uses it to build frequency histograms.

Course: *Algorithms and Data Structures*, Semester 3.

## Implemented

- `BST` — generic binary search tree
- `Dictionary` — key-value store backed by BST
- `Histogram` — frequency distribution using Dictionary

## Build

```bash
mkdir build && cd build
cmake ..
make
./lab2
```

## License

MIT