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

https://github.com/vevdokimovm/mephi-tree-structures

C++ implementation of Binary Tree and Binary Heap with interactive console interface. MEPhI lab
https://github.com/vevdokimovm/mephi-tree-structures

binary-heap binary-tree cmake cpp data-structures

Last synced: 22 days ago
JSON representation

C++ implementation of Binary Tree and Binary Heap with interactive console interface. MEPhI lab

Awesome Lists containing this project

README

          

# mephi-tree-structures

C++ implementation of tree-based data structures — **Binary Tree** and **Binary Heap** — with interactive console interfaces. University lab at MEPhI.

## Data Structures

- **BinaryTree** — generic binary search tree with traversal, insert, delete, search
- **BinaryHeap** — min/max heap with heapify, insert, extract

## Tech Stack

- C++17
- CMake

## Build & Run

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

## License

MIT