This repository contains the implementation of the Red-Black Tree data structure, developed as part of the Advanced Algorithms and Data Structures college course at the Faculty of Electrical Engineering Sarajevo. The solution is implemented in .NET 7.
.
├── RedBlackTree # Console app
├── RedBlackTree.Tests # xUnit tests
├── RedBlackTree.sln # Solution file
└── README.md
The image below illustrates the available options in the console app.
The result can be visualized using this simulator.
Follow the instructions below to get local copy up and running.
- Clone the repository
git clone https://github.com/mkokor/red-black-tree.git
Run command below to start the console app (RedBlackTree folder).
dotnet run
Run command below to execute unit tests (RedBlackTree.Tests folder).
dotnet test