Skip to content

teo67/CustomTypes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Custom Data Structures for C# !

To run, make sure you have the C# extension for VSCode installed and use "dotnet run".

Current Datatypes

  • Circle - nodes are arranged in a circle, with each one pointing in both the counterclockwise and clockwise directions. A custom Metadata class is included for keying nodes to strings for later use.
  • NTree - like a binary tree, but with n connections per node instead of two. Because of this, the supplied comparator must be able to return integers from 0 to n - 1.
  • NodeMap - A two-dimensional array of nodes, with each pointing down and to the right. This type is irrelevant to most projects, as inserting and deleting are high in time complexity and involve a lot of connection shifting.

About

A collection of custom data structures implemented in C#.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages