TheAlgorithms-PHP/DIRECTORY.md

79 lines
3.0 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-07-08 18:26:39 +00:00
* [Caesarcipher](./ciphers/caesarCipher.php)
* [Morsecode](./ciphers/morseCode.php)
* [Xorcipher](./ciphers/XORCipher.php)
* [Mono-AlphabeticCipher](./ciphers/monoAlphabeticCipher.php)
2021-02-15 01:44:51 +00:00
## Conversions
2022-07-08 18:26:39 +00:00
* [Binarytodecimal](./Conversions/BinaryToDecimal.php)
* [Decimaltobinary](./Conversions/DecimalToBinary.php)
* [Hexadecimaltodecimal](./Conversions/HexadecimalToDecimal.php)
* [Octaltodecimal](./Conversions/OctalToDecimal.php)
2020-10-13 20:00:15 +02:00
## Maths
2022-07-08 18:26:39 +00:00
* [Absolutemax](./Maths/AbsoluteMax.php)
* [Absolutemin](./Maths/AbsoluteMin.php)
* [Checkprime](./Maths/CheckPrime.php)
2022-02-25 16:38:44 +06:00
* [Factorial](./Maths/Factorial.php)
2022-07-08 18:26:39 +00:00
* [Fastexponentiation](./Maths/FastExponentiation.php)
2022-02-25 16:38:44 +06:00
* [Fibonacci](./Maths/Fibonacci.php)
* [Fibonacci2](./Maths/Fibonacci2.php)
2022-07-08 18:26:39 +00:00
* [Perfectsquare](./Maths/PerfectSquare.php)
2021-02-15 01:44:51 +00:00
2022-07-08 18:26:39 +00:00
## Projecteuler
2022-02-25 16:38:44 +06:00
* [Problem1](./ProjectEuler/Problem1.php)
* [Problem2](./ProjectEuler/Problem2.php)
* [Problem3](./ProjectEuler/Problem3.php)
* [Problem5](./ProjectEuler/Problem5.php)
* [Problem6](./ProjectEuler/Problem6.php)
* [Problem7](./ProjectEuler/Problem7.php)
* [Problem9](./ProjectEuler/Problem9.php)
2021-10-06 00:51:12 +00:00
2021-02-15 01:44:51 +00:00
## Searches
2022-02-25 16:38:44 +06:00
* [Binary Search](./searches/binary_search.php)
2022-07-08 18:26:39 +00:00
* [Fibonaccisearch](./searches/fibonacciSearch.php)
2022-02-25 16:38:44 +06:00
* [Linear Search](./searches/linear_search.php)
* [Lower Bound](./searches/lower_bound.php)
* [Upper Bound](./searches/upper_bound.php)
2020-08-10 10:19:45 +08:00
## Sorting
2022-07-08 18:26:39 +00:00
* [Arraykeyssort](./sorting/arrayKeysSort.php)
* [Bubblesort](./sorting/bubbleSort.php)
* [Bubblesort2](./sorting/bubbleSort2.php)
* [Countsort](./sorting/countSort.php)
* [Insertionsort](./sorting/insertionSort.php)
* [Mergesort](./sorting/mergeSort.php)
* [Quicksort](./sorting/quickSort.php)
* [Radixsort](./sorting/radixSort.php)
* [Selectionsort](./sorting/selectionSort.php)
2020-10-03 07:26:14 +00:00
## String
2022-07-08 18:26:39 +00:00
* [Checkanagram](./String/CheckAnagram.php)
* [Checkpalindrome](./String/CheckPalindrome.php)
* [Checkpalindromestring](./String/CheckPalindromeString.php)
* [Countsentences](./String/CountSentences.php)
* [Countvowels](./String/CountVowels.php)
* [Countvowelsconsonantnumber](./String/CountVowelsConsonantNumber.php)
* [Editdistance](./String/EditDistance.php)
* [Maxcharacter](./String/MaxCharacter.php)
* [Reversestring](./String/ReverseString.php)
* [Reversewords](./String/ReverseWords.php)
2021-02-15 01:44:51 +00:00
## Tests
2022-07-08 18:26:39 +00:00
* [Cipherstest](./tests/CiphersTest.php)
* [Ciphertest](./tests/CipherTest.php)
* [MonoAlphabeticCipherTest](./tests/MonoAlphabeticCipherTest.php)
2022-07-08 18:26:39 +00:00
* [Conversionstest](./tests/ConversionsTest.php)
* [Decimaltobinarytest](./tests/DecimalToBinaryTest.php)
* [Fibonaccisearchtest](./tests/fibonacciSearchTest.php)
* [Mathtest](./tests/MathTest.php)
* [Morsecodetest](./tests/MorseCodeTest.php)
* [Projecteulertest](./tests/ProjectEulerTest.php)
2022-02-25 16:38:44 +06:00
* Sorting
2022-07-08 18:26:39 +00:00
* [Arraykeyssorttest](./tests/sorting/arrayKeysSortTest.php)
* [Countsorttest](./tests/sorting/countSortTest.php)
* [Quicksorttest](./tests/sorting/quickSortTest.php)
* [Stringtest](./tests/StringTest.php)