├── .github ├── code-of-conduct.md ├── contributing.md ├── issue-template.md └── pull-request-template.md ├── algorithms ├── cryptography │ ├── caesar.cs │ └── playfair.cs ├── data-structures │ ├── DoublyLinkedList.cs │ ├── linkedlist.cs │ ├── queue.cs │ └── stack.cs ├── dizeleri │ └── replacing.cs ├── dynamic-programming │ └── coin change │ │ └── CoinChange.cs ├── greedy │ ├── Dijkstra.cs │ └── Prim.cs ├── math │ ├── IterativePermutation.cs │ ├── isPerfectSquare.cs │ └── isPrime.cs ├── maze-generator │ └── binary-space-partitioning │ │ ├── Program.cs │ │ ├── Room.cs │ │ └── Tile.cs ├── searches │ ├── GenericBinarySearchTree.cs │ ├── InterpolationSearch.cs │ ├── binarysearch.cs │ ├── jumpsearch.cs │ ├── linearsearch.cs │ └── ternarysearch.cs ├── sorting │ ├── bitonicsort.cs │ ├── bogosort.cs │ ├── bubblesort.cs │ ├── bucketsort.cs │ ├── cocktailsort.cs │ ├── countingsort.cs │ ├── heapsort.cs │ ├── insertionsort.cs │ ├── mergesort.cs │ ├── quicksort.cs │ ├── radixsort.cs │ ├── selectionsort.cs │ ├── shellsort.cs │ └── timsort.cs └── strings │ ├── FilterIntegers.cs │ ├── Levenshtein.cs │ ├── RabinKarp.cs │ ├── StringReverse.cs │ ├── palindrome.cs │ └── reversestring.cs ├── license ├── readme.md └── src └── .gitkeep /.github/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/.github/code-of-conduct.md -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/issue-template.md: -------------------------------------------------------------------------------- 1 | I am creating an issue because... 2 | -------------------------------------------------------------------------------- /.github/pull-request-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/.github/pull-request-template.md -------------------------------------------------------------------------------- /algorithms/cryptography/caesar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/cryptography/caesar.cs -------------------------------------------------------------------------------- /algorithms/cryptography/playfair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/cryptography/playfair.cs -------------------------------------------------------------------------------- /algorithms/data-structures/DoublyLinkedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/data-structures/DoublyLinkedList.cs -------------------------------------------------------------------------------- /algorithms/data-structures/linkedlist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/data-structures/linkedlist.cs -------------------------------------------------------------------------------- /algorithms/data-structures/queue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/data-structures/queue.cs -------------------------------------------------------------------------------- /algorithms/data-structures/stack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/data-structures/stack.cs -------------------------------------------------------------------------------- /algorithms/dizeleri/replacing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/dizeleri/replacing.cs -------------------------------------------------------------------------------- /algorithms/dynamic-programming/coin change/CoinChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/dynamic-programming/coin change/CoinChange.cs -------------------------------------------------------------------------------- /algorithms/greedy/Dijkstra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/greedy/Dijkstra.cs -------------------------------------------------------------------------------- /algorithms/greedy/Prim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/greedy/Prim.cs -------------------------------------------------------------------------------- /algorithms/math/IterativePermutation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/math/IterativePermutation.cs -------------------------------------------------------------------------------- /algorithms/math/isPerfectSquare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/math/isPerfectSquare.cs -------------------------------------------------------------------------------- /algorithms/math/isPrime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/math/isPrime.cs -------------------------------------------------------------------------------- /algorithms/maze-generator/binary-space-partitioning/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/maze-generator/binary-space-partitioning/Program.cs -------------------------------------------------------------------------------- /algorithms/maze-generator/binary-space-partitioning/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/maze-generator/binary-space-partitioning/Room.cs -------------------------------------------------------------------------------- /algorithms/maze-generator/binary-space-partitioning/Tile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/maze-generator/binary-space-partitioning/Tile.cs -------------------------------------------------------------------------------- /algorithms/searches/GenericBinarySearchTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/searches/GenericBinarySearchTree.cs -------------------------------------------------------------------------------- /algorithms/searches/InterpolationSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/searches/InterpolationSearch.cs -------------------------------------------------------------------------------- /algorithms/searches/binarysearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/searches/binarysearch.cs -------------------------------------------------------------------------------- /algorithms/searches/jumpsearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/searches/jumpsearch.cs -------------------------------------------------------------------------------- /algorithms/searches/linearsearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/searches/linearsearch.cs -------------------------------------------------------------------------------- /algorithms/searches/ternarysearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/searches/ternarysearch.cs -------------------------------------------------------------------------------- /algorithms/sorting/bitonicsort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/sorting/bitonicsort.cs -------------------------------------------------------------------------------- /algorithms/sorting/bogosort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/sorting/bogosort.cs -------------------------------------------------------------------------------- /algorithms/sorting/bubblesort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/sorting/bubblesort.cs -------------------------------------------------------------------------------- /algorithms/sorting/bucketsort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/sorting/bucketsort.cs -------------------------------------------------------------------------------- /algorithms/sorting/cocktailsort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/sorting/cocktailsort.cs -------------------------------------------------------------------------------- /algorithms/sorting/countingsort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/sorting/countingsort.cs -------------------------------------------------------------------------------- /algorithms/sorting/heapsort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/sorting/heapsort.cs -------------------------------------------------------------------------------- /algorithms/sorting/insertionsort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/sorting/insertionsort.cs -------------------------------------------------------------------------------- /algorithms/sorting/mergesort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/sorting/mergesort.cs -------------------------------------------------------------------------------- /algorithms/sorting/quicksort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/sorting/quicksort.cs -------------------------------------------------------------------------------- /algorithms/sorting/radixsort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/sorting/radixsort.cs -------------------------------------------------------------------------------- /algorithms/sorting/selectionsort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/sorting/selectionsort.cs -------------------------------------------------------------------------------- /algorithms/sorting/shellsort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/sorting/shellsort.cs -------------------------------------------------------------------------------- /algorithms/sorting/timsort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/sorting/timsort.cs -------------------------------------------------------------------------------- /algorithms/strings/FilterIntegers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/strings/FilterIntegers.cs -------------------------------------------------------------------------------- /algorithms/strings/Levenshtein.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/strings/Levenshtein.cs -------------------------------------------------------------------------------- /algorithms/strings/RabinKarp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/strings/RabinKarp.cs -------------------------------------------------------------------------------- /algorithms/strings/StringReverse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/strings/StringReverse.cs -------------------------------------------------------------------------------- /algorithms/strings/palindrome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/strings/palindrome.cs -------------------------------------------------------------------------------- /algorithms/strings/reversestring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/algorithms/strings/reversestring.cs -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/license -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllAlgorithms/csharp/HEAD/readme.md -------------------------------------------------------------------------------- /src/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------