https://github.com/gsscoder/sharprhythm
Stub project for algorithms and data structures implemented in C#
https://github.com/gsscoder/sharprhythm
algorithms csharp datastructures dotnet dotnetcore
Last synced: about 1 month ago
JSON representation
Stub project for algorithms and data structures implemented in C#
- Host: GitHub
- URL: https://github.com/gsscoder/sharprhythm
- Owner: gsscoder
- License: mit
- Created: 2019-12-10T15:36:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-06T07:03:04.000Z (over 6 years ago)
- Last Synced: 2025-05-19T23:08:41.626Z (about 1 year ago)
- Topics: algorithms, csharp, datastructures, dotnet, dotnetcore
- Language: C#
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SharpRhythm
Stub project for algorithms and data structures implementation C#. Inspired by [javascript-algorithms](https://github.com/trekhleb/javascript-algorithms).
# Build
**NOTE**: .NET Core 3.0 or higher is required.
```sh
# clone the repository
$ git clone https://github.com/gsscoder/sharprhythm.git
# build the package
$ cd sharprhythm/src/SharpRhythm
$ dotnet build -c Release.
```
## Test
```sh
# change to tests directory
$ cd sharprhythm/tests/SharpRhythm.Tests
# build with debug configuration
$ dotnet build -c Debug
...
# execute tests
$ dotnet test
...
```
### Implemented
* Algorithms
* Sorting
* [Bubble Sort](https://en.wikipedia.org/wiki/Bubble_sort)
* [Quick Sort](https://en.wikipedia.org/wiki/Quicksort)
* Strings
* [Levenshtein Fuzzy Match](https://en.wikipedia.org/wiki/Levenshtein_distance)
* Data Structures
* [Trie](https://en.wikipedia.org/wiki/Trie)