29 lines
733 B
Markdown
29 lines
733 B
Markdown
# 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)
|
|
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)
|
|
|
|
## 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)
|