2021-04-15 01:42:45 +00:00
|
|
|
# C#
|
2021-04-15 17:43:24 +00:00
|
|
|
For running the `.cs` file please using [.Net Finddle](https://dotnetfiddle.net/)
|
2021-04-15 01:42:45 +00:00
|
|
|
|
|
|
|
## 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)
|
2021-04-15 17:43:24 +00:00
|
|
|
|
|
|
|
## Strings
|
|
|
|
- [Palindrome](src/Strings/palindrome.cs)
|
2021-05-16 16:35:57 +00:00
|
|
|
|
|
|
|
## Search
|
|
|
|
- [Binary Search](src/Search/binary-search.cs)
|
2021-07-23 13:35:57 +00:00
|
|
|
- [Linear Search](src/Search/linear-search.cs)
|
2021-06-16 18:05:26 +00:00
|
|
|
|
|
|
|
## Maths
|
|
|
|
- [Abundant Number](src/Maths/abundant-number.cs)
|
2021-09-03 14:42:30 +00:00
|
|
|
|
2021-09-05 19:27:34 +00:00
|
|
|
## Queues
|
|
|
|
- [Queue Implementation Using Two Stacks](src/Queues/queue-implementation-using-two-stacks.cs)
|
|
|
|
|
2021-09-03 14:42:30 +00:00
|
|
|
## Recusrsion
|
2021-09-05 19:20:51 +00:00
|
|
|
- [Factorial](src/Recursion/factorial.cs)
|
|
|
|
|
|
|
|
## Graph
|
2021-09-05 19:27:34 +00:00
|
|
|
- [Depth First Search](src/Graph/depth-first-search.cs)
|