Skip to content

Latest commit

 

History

History
56 lines (44 loc) · 1.48 KB

README.md

File metadata and controls

56 lines (44 loc) · 1.48 KB

About repository

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.

Project structure

.
├── RedBlackTree                          # Console app
├── RedBlackTree.Tests                    # xUnit tests
├── RedBlackTree.sln                      # Solution file
└── README.md

Demonstration

The image below illustrates the available options in the console app.

options

The result can be visualized using this simulator.

Getting Started

Follow the instructions below to get local copy up and running.

Prerequisites

  1. .NET 7 SDK

Installation

  1. Clone the repository
git clone https://github.com/mkokor/red-black-tree.git

Execution

Run command below to start the console app (RedBlackTree folder).

dotnet run

Run command below to execute unit tests (RedBlackTree.Tests folder).

dotnet test