Skip to content

Commit 6f4407e

Browse files
authored
Update DIRECTORY.md for the website (#220)
1 parent db8b60f commit 6f4407e

2 files changed

Lines changed: 125 additions & 125 deletions

File tree

DIRECTORY.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* [Caesar](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Encoders/CaesarEncoder.cs)
99
* [Vigenere](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Encoders/VigenereEncoder.cs)
1010
* [Hill](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Encoders/HillEncoder.cs)
11-
* [NYSIIS](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Encoders/NYSIISEncoder.cs)
11+
* [NYSIIS](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Encoders/NysiisEncoder.cs)
1212
* [Soundex](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Encoders/SoundexEncoder.cs)
1313
## Knapsack problem
1414
* [Naive solver](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Knapsack/NaiveKnapsackSolver.cs)
@@ -20,7 +20,7 @@
2020
* [Aliquot Sum Calculator](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Numeric/AliquotSumCalculator.cs)
2121
* Decomposition
2222
* [LU Decomposition](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Numeric/Decomposition/LU.cs)
23-
* [Singular Vector Decomposition](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Numeric/Decomposition/SVD.cs)
23+
* [Thin Singular Vector Decomposition](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Numeric/Decomposition/ThinSVD.cs)
2424
* Greatest Common Divisor
2525
* [Euclidean GCD](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Numeric/GreatestCommonDivisor/EuclideanGreatestCommonDivisorFinder.cs)
2626
* [Binary GCD](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Numeric/GreatestCommonDivisor/BinaryGreatestCommonDivisorFinder.cs)
@@ -39,7 +39,7 @@
3939
* [Recursive Binary Search](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Search/RecursiveBinarySearcher.cs)
4040
* [Linear Search](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Search/LinearSearcher.cs)
4141
* [Fast Search](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Search/FastSearcher.cs)
42-
* [Knuth–Morris–Pratt](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Search/KmpSearcher.cs)
42+
* [Knuth–Morris–Pratt](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Strings/KnuthMorrisPrattSearcher.cs)
4343
## Sorts
4444
* Comparison
4545
* [Binary Insertion Sort](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/BinaryInsertionSorter.cs)
@@ -56,8 +56,8 @@
5656
* [Median of three pivot](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/MedianOfThreeQuickSorter.cs)
5757
* [Middle point pivot](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/MiddlePointQuickSorter.cs)
5858
* [Random pivot](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/RandomPivotQuickSorter.cs)
59-
* [Selection](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/SelectionSorter.cs)
60-
* [Shell](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/ShellSorter.cs)
59+
* [Selection Sort](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/SelectionSorter.cs)
60+
* [Shell Sort](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/ShellSorter.cs)
6161
* External
6262
* [Merge Sort](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/External/ExternalMergeSorter.cs)
6363
* Integer
@@ -82,27 +82,29 @@
8282
* [Fermat Prime Checker](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Other/FermatPrimeChecker.cs)
8383
* [Sieve of Eratosthenes](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Other/SieveOfEratosthenes.cs)
8484
* [Luhn](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Other/Luhn.cs)
85-
* [Mandelbrot](https://github.com/TheAlgorithms/C-Sharp/blob/master//Algorithms/Other/Mandelbrot.cs)
86-
* [Koch Snowflake](https://github.com/TheAlgorithms/C-Sharp/blob/master//Algorithms/Other/KochSnowflake.cs)
87-
* [RGB-HSV Conversion](https://github.com/TheAlgorithms/C-Sharp/blob/master//Algorithms/Other/RGBHSVConversion.cs)
85+
* [Mandelbrot](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Other/Mandelbrot.cs)
86+
* [Koch Snowflake](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Other/KochSnowflake.cs)
87+
* [RGB-HSV Conversion](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Other/RGBHSVConversion.cs)
8888
## Problems
8989
* [Stable Marriage](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Problems/StableMarriage/GaleShapley.cs)
9090
* [N-Queens](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Problems/NQueens/BacktrackingNQueensSolver.cs)
9191

9292
## Data Structures
9393
* [Bit Array](https://github.com/TheAlgorithms/C-Sharp/blob/master/DataStructures/BitArray.cs)
94-
* [Min-Max Heap](https://github.com/TheAlgorithms/C-Sharp/blob/master/DataStructures/MinMaxHeap.cs)
9594
* [Timeline](https://github.com/TheAlgorithms/C-Sharp/blob/master/DataStructures/Timeline.cs)
9695
* Segment Trees
9796
* [Segment Tree](https://github.com/TheAlgorithms/C-Sharp/blob/master/DataStructures/SegmentTrees/SegmentTree.cs)
9897
* [Segment Tree Multiplication](https://github.com/TheAlgorithms/C-Sharp/blob/master/DataStructures/SegmentTrees/SegmentTreeApply.cs)
9998
* [Segment Tree Update](https://github.com/TheAlgorithms/C-Sharp/blob/master/DataStructures/SegmentTrees/SegmentTreeUpdate.cs)
10099
* [Binary Search Tree](https://github.com/TheAlgorithms/C-Sharp/blob/master/DataStructures/BinarySearchTree)
101100
* [AA Tree](https://github.com/TheAlgorithms/C-Sharp/blob/master/DataStructures/AATree)
102-
* [Binary Heap](https://github.com/TheAlgorithms/C-Sharp/blob/master/DataStructures/BinaryHeap.cs)
103101
* Stack
104102
* [Array-based Stack](https://github.com/TheAlgorithms/C-Sharp/blob/master/DataStructures/Stack/ArrayBasedStack.cs)
105103
* [List-based Stack](https://github.com/TheAlgorithms/C-Sharp/blob/master/DataStructures/Stack/ListBasedStack.cs)
104+
* Heap
105+
* [Min-Max Heap](https://github.com/TheAlgorithms/C-Sharp/blob/master/DataStructures/Heap/MinMaxHeap.cs)
106+
* [Binary Heap](https://github.com/TheAlgorithms/C-Sharp/blob/master/DataStructures/Heap/BinaryHeap.cs)
107+
* [Fibonacci Heap](https://github.com/TheAlgorithms/C-Sharp/blob/master/DataStructures/Heap/FibonacciHeaps/FibonacciHeap.cs)
106108
* Queue
107109
* [Array-based Queue](https://github.com/TheAlgorithms/C-Sharp/blob/master/DataStructures/Queue/ArrayBasedQueue.cs)
108110
* [List-based Queue](https://github.com/TheAlgorithms/C-Sharp/blob/master/DataStructures/Queue/ListBasedQueue.cs)

0 commit comments

Comments
 (0)