Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 745 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 745 Bytes

.NET

RbTree

A red-black tree implementation in C#.

Set up and build

You will need to have dotnet installed, as well as the .Net Core 5 SDK and runtime. This assumes you're using a bash-like shell.

  • Clone the repository
    • git clone https://github.com/quantumferret/RbTree.git
  • move into the resultin directory
    • cd RbTree
  • Then, simply build the project with dotnet
    • dotnet build

Run unit tests

While in the RbTree directory, run dotnet test

Run Examples

From the RbTree directory, run dotnet run --project Examples/ (wip)

Documentation to come.