TheAlgorithms-PHP/DIRECTORY.md
2021-10-21 21:39:55 -05:00

62 lines
2.1 KiB
Markdown

# List of all files
## Ciphers
* [Caesarcipher](./ciphers/caesarCipher.php)
* [Xorcipher](./ciphers/XORCipher.php)
## Conversions
* [Binarytodecimal](./Conversions/BinaryToDecimal.php)
* [Hexadecimaltodecimal](./Conversions/HexadecimalToDecimal.php)
* [Octaltodecimal](./Conversions/OctalToDecimal.php)
## Maths
* [Absolutemax](./Maths/AbsoluteMax.php)
* [Absolutemin](./Maths/AbsoluteMin.php)
* [Checkprime](./Maths/CheckPrime.php)
* [Factorial](./Maths/Factorial.php)
* [Fastexponentiation](./Maths/FastExponentiation.php)
* [Fibonacci](./Maths/Fibonacci.php)
* [Fibonacci with Generator](./Maths/Fibonacci2.php)
* [Perfectsquare](./Maths/PerfectSquare.php)
## Projecteuler
* [Problem1](./ProjectEuler/Problem1.php)
* [Problem2](./ProjectEuler/Problem2.php)
* [Problem5](./ProjectEuler/Problem5.php)
* [Problem7](./ProjectEuler/Problem7.php)
* [Problem9](./ProjectEuler/Problem9.php)
## Searches
* [Binary Search](./searches/binary_search.php)
* [Linear Search](./searches/linear_search.php)
* [Lower Bound](./searches/lower_bound.php)
* [Upper Bound](./searches/upper_bound.php)
## Sorting
* [Bubblesort](./sorting/bubbleSort.php)
* [Bubblesort2](./sorting/bubbleSort2.php)
* [Countsort](./sorting/countSort.php)
* [Insertionsort](./sorting/insertionSort.php)
* [Mergesort](./sorting/mergeSort.php)
* [Radixsort](./sorting/radixSort.php)
* [Selectionsort](./sorting/selectionSort.php)
## String
* [Checkanagram](./String/CheckAnagram.php)
* [Checkpalindrome](./String/CheckPalindrome.php)
* [Countvowels](./String/CountVowels.php)
* [Editdistance](./String/EditDistance.php)
* [Maxcharacter](./String/MaxCharacter.php)
* [Reversestring](./String/ReverseString.php)
* [Reversewords](./String/ReverseWords.php)
## Tests
* [Cipherstest](./tests/CiphersTest.php)
* [Ciphertest](./tests/CipherTest.php)
* [Conversionstest](./tests/ConversionsTest.php)
* [Mathtest](./tests/MathTest.php)
* [Projecteulertest](./tests/ProjectEulerTest.php)
* Sorting
* [Countsorttest](./tests/sorting/countSortTest.php)
* [Stringtest](./tests/StringTest.php)