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
- Host: GitHub
- URL: https://github.com/vevdokimovm/mephi-tree-structures
- Owner: vevdokimovm
- License: mit
- Created: 2020-06-12T21:49:17.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2026-04-20T20:32:58.000Z (3 months ago)
- Last Synced: 2026-04-20T22:32:58.012Z (3 months ago)
- Topics: binary-heap, binary-tree, cmake, cpp, data-structures
- Language: C++
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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