https://github.com/staivanov/algorithms
Popular algorithms implemented on C#.
https://github.com/staivanov/algorithms
algorithm algorithms binarysearch bubblesort bucketsort graph graphs heap insertionsort mergesort selectionsort shellshort tower-of-hanoi
Last synced: 7 months ago
JSON representation
Popular algorithms implemented on C#.
- Host: GitHub
- URL: https://github.com/staivanov/algorithms
- Owner: staivanov
- Created: 2023-11-27T09:27:26.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-10-12T02:23:35.000Z (12 months ago)
- Last Synced: 2025-01-28T04:28:52.664Z (8 months ago)
- Topics: algorithm, algorithms, binarysearch, bubblesort, bucketsort, graph, graphs, heap, insertionsort, mergesort, selectionsort, shellshort, tower-of-hanoi
- Language: C#
- Homepage:
- Size: 925 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Popular algorithms
## Decription
This is a project with most popular sorting and searching algorithms. There is also demo code for heaps, graphs and Tower of Hanoi.
## Table of content
| Name | Type |
| ---- | ---- |
| BinarySearch Iterative | Searching algorithm |
| BinarySearch Recursive | Searching algorithm |
| LinearSearch | Searching algorithm |
| ---- | ---- |
| Tower of Hanoi | Mathematical puzzle |
| ---- | ---- |
| BubbleSort | Sorting Algorithm - Comparison based |
| InsertionSort | Sorting Algorithm - Comparison based |
| MergeSort | Sorting Algorithm - Comparison based |
| QuickSort | Sorting Algorithm - Comparison based |
| SelectionSort | Sorting Algorithm - Comparison based |
| ShellSort | Sorting Algorithm - Comparison based |
| BucketSort | Sorting Algorithm - Index based |
| CountSort | Sorting Algorithm - Index based |
| RadixSort | Sorting Algorithm - Index based |## How to Use the Project
Clone or download this repo. Open *.sln file with a compatible IDE.