DSA/algorithms/CSharp/README.md

30 lines
819 B
Markdown
Raw Normal View History

# C#
For running the `.cs` file please using [.Net Finddle](https://dotnetfiddle.net/)
## Sorts
1. [Bubble Sort](src/Sorts/bubble-sort.cs)
2. [Insertion Sort](src/Sorts/insertion-sort.cs)
2021-04-15 15:12:27 +00:00
3. [Selection Sort](src/Sorts/selection-sort.cs)
4. [Counting Sort](src/Sorts/counting-sort.cs)
## Strings
- [Palindrome](src/Strings/palindrome.cs)
## Search
- [Binary Search](src/Search/binary-search.cs)
- [Linear Search](src/Search/linear-search.cs)
2021-06-16 18:05:26 +00:00
## Maths
- [Abundant Number](src/Maths/abundant-number.cs)
## Queues
- [Queue Implementation Using Two Stacks](src/Queues/queue-implementation-using-two-stacks.cs)
## Recursion
- [Factorial](src/Recursion/factorial.cs)
## Graph
- [Depth First Search](src/Graph/depth-first-search.cs)
- [Kruskals Algorithm to Find Minimum Spanning Tree](src/Graph/kruskals-algorithm.cs)