TheAlgorithms-PHP/DIRECTORY.md

101 lines
3.8 KiB
Markdown
Raw Normal View History

2021-02-15 01:44:51 +00:00
# List of all files
2020-10-03 07:26:14 +00:00
## Ciphers
2022-08-03 17:58:40 +00:00
* [Caesarcipher](./Ciphers/CaesarCipher.php)
* [Monoalphabeticcipher](./Ciphers/MonoAlphabeticCipher.php)
* [Morsecode](./Ciphers/MorseCode.php)
* [Xorcipher](./Ciphers/XORCipher.php)
2021-02-15 01:44:51 +00:00
## Conversions
2022-08-03 17:58:40 +00:00
* [Binarytodecimal](./Conversions/BinaryToDecimal.php)
* [Decimaltobinary](./Conversions/DecimalToBinary.php)
* [Hexadecimaltodecimal](./Conversions/HexadecimalToDecimal.php)
* [Octaltodecimal](./Conversions/OctalToDecimal.php)
2022-11-01 04:32:37 +01:00
* [Speedconversion](./Conversions/SpeedConversion.php)
## Graphs
* [Depthfirstsearch](./Graphs/DepthFirstSearch.php)
2020-10-13 20:00:15 +02:00
## Maths
2022-08-03 17:58:40 +00:00
* [Absolutemax](./Maths/AbsoluteMax.php)
* [Absolutemin](./Maths/AbsoluteMin.php)
2022-10-11 05:49:20 +00:00
* [Armstrongnumber](./Maths/ArmstrongNumber.php)
2022-10-06 21:23:15 +05:00
* [Checkpalindrome](./Maths/CheckPalindrome.php)
2022-08-03 17:58:40 +00:00
* [Checkprime](./Maths/CheckPrime.php)
* [Factorial](./Maths/Factorial.php)
* [Fastexponentiation](./Maths/FastExponentiation.php)
* [Fibonacci](./Maths/Fibonacci.php)
* [Fibonacci2](./Maths/Fibonacci2.php)
* [Mean](./Maths/Mean.php)
* [Median](./Maths/Median.php)
* [Mode](./Maths/Mode.php)
2022-10-16 04:42:08 +00:00
* [Neonnumber](./Maths/NeonNumber.php)
* [Perfectsquare](./Maths/PerfectSquare.php)
2022-08-03 17:58:40 +00:00
* Projecteuler
* [Problem1](./Maths/ProjectEuler/Problem1.php)
* [Problem2](./Maths/ProjectEuler/Problem2.php)
* [Problem3](./Maths/ProjectEuler/Problem3.php)
* [Problem5](./Maths/ProjectEuler/Problem5.php)
* [Problem6](./Maths/ProjectEuler/Problem6.php)
* [Problem7](./Maths/ProjectEuler/Problem7.php)
* [Problem9](./Maths/ProjectEuler/Problem9.php)
2021-10-06 00:51:12 +00:00
2021-02-15 01:44:51 +00:00
## Searches
2022-08-03 17:58:40 +00:00
* [Binarysearch](./Searches/BinarySearch.php)
2022-11-08 19:05:14 +00:00
* [Exponentialsearch](./Searches/ExponentialSearch.php)
2022-08-03 17:58:40 +00:00
* [Fibonaccisearch](./Searches/FibonacciSearch.php)
* [Jumpsearch](./Searches/JumpSearch.php)
* [Linearsearch](./Searches/LinearSearch.php)
* [Lowerbound](./Searches/LowerBound.php)
2022-11-08 19:05:14 +00:00
* [Ternarysearch](./Searches/TernarySearch.php)
2022-08-03 17:58:40 +00:00
* [Upperbound](./Searches/UpperBound.php)
2020-08-10 10:19:45 +08:00
## Sorting
2022-08-03 17:58:40 +00:00
* [Arraykeyssort](./Sorting/ArrayKeysSort.php)
* [Bubblesort](./Sorting/BubbleSort.php)
* [Bubblesort2](./Sorting/BubbleSort2.php)
* [Countsort](./Sorting/CountSort.php)
* [Gnomesort](./Sorting/GnomeSort.php)
* [Insertionsort](./Sorting/InsertionSort.php)
* [Mergesort](./Sorting/MergeSort.php)
* [Quicksort](./Sorting/QuickSort.php)
* [Radixsort](./Sorting/RadixSort.php)
* [Selectionsort](./Sorting/SelectionSort.php)
## Strings
2022-08-03 17:58:40 +00:00
* [Checkanagram](./Strings/CheckAnagram.php)
* [Checkpalindrome](./Strings/CheckPalindrome.php)
* [Checkpalindrome2](./Strings/CheckPalindrome2.php)
* [Countconsonants](./Strings/CountConsonants.php)
* [Countsentences](./Strings/CountSentences.php)
* [Countvowels](./Strings/CountVowels.php)
* [Distance](./Strings/Distance.php)
* [Maxcharacter](./Strings/MaxCharacter.php)
* [Reversestring](./Strings/ReverseString.php)
* [Reversewords](./Strings/ReverseWords.php)
2021-02-15 01:44:51 +00:00
## Tests
2022-08-03 17:58:40 +00:00
* Ciphers
* [Cipherstest](./tests/Ciphers/CiphersTest.php)
* [Monoalphabeticciphertest](./tests/Ciphers/MonoAlphabeticCipherTest.php)
* [Morsecodetest](./tests/Ciphers/MorseCodeTest.php)
* Conversions
* [Conversionstest](./tests/Conversions/ConversionsTest.php)
2022-11-01 04:32:37 +01:00
* Graphs
* [Depthfirstsearchtest](./tests/Graphs/DepthFirstSearchTest.php)
2022-08-03 17:58:40 +00:00
* Maths
* [Mathstest](./tests/Maths/MathsTest.php)
* [Projecteulertest](./tests/Maths/ProjectEulerTest.php)
* Searches
* [Searchestest](./tests/Searches/SearchesTest.php)
* Sorting
* [Arraykeyssorttest](./tests/Sorting/ArrayKeysSortTest.php)
* [Gnomesorttest](./tests/Sorting/GnomeSortTest.php)
* [Sortingtests](./tests/Sorting/SortingTests.php)
* Strings
* [Stringstest](./tests/Strings/StringsTest.php)
## Utils
2022-08-03 17:58:40 +00:00
* [Arrayhelpers](./Utils/ArrayHelpers.php)
* [Executiontime](./Utils/ExecutionTime.php)