TheAlgorithms-PHP/DIRECTORY.md

25 lines
1.7 KiB
Markdown
Raw Normal View History

2020-10-03 07:26:14 +00:00
## Ciphers
2020-10-10 13:29:33 +03:30
* [Caesar Cipher](https://github.com/TheAlgorithms/PHP/blob/master/ciphers/caesarCipher.php)
2020-10-03 07:26:14 +00:00
* [Xor Cipher](https://github.com/TheAlgorithms/PHP/blob/master/ciphers/XORCipher.php)
2020-10-13 20:00:15 +02:00
## Maths
* [Absolute Max](https://github.com/TheAlgorithms/PHP/blob/master/Maths/AbsoluteMax.php)
* [Absolute Min](https://github.com/TheAlgorithms/PHP/blob/master/Maths/AbsoluteMin.php)
* [Check Prime](https://github.com/TheAlgorithms/PHP/blob/master/Maths/CheckPrime.php)
* [Factorial](https://github.com/TheAlgorithms/PHP/blob/master/Maths/Factorial.php)
* [Perfect Square](https://github.com/TheAlgorithms/PHP/blob/master/Maths/PerfectSquare.php)
2020-08-10 10:19:45 +08:00
## Searching
* [Binary Search](https://github.com/TheAlgorithms/PHP/blob/master/searches/binary_search.php)
2020-10-13 10:41:02 +05:30
* [Linear Search](https://github.com/TheAlgorithms/PHP/blob/master/searches/linear_search.php)
2020-08-10 10:19:45 +08:00
## Sorting
* [Bubble Sort](https://github.com/TheAlgorithms/PHP/blob/master/sorting/bubbleSort.php)
* [Insertion Sort](https://github.com/TheAlgorithms/PHP/blob/master/sorting/insertionSort.php)
* [Merge Sort](https://github.com/TheAlgorithms/PHP/blob/master/sorting/mergeSort.php)
* [Radix Sort](https://github.com/TheAlgorithms/PHP/blob/master/sorting/radixSort.php)
* [Selection Sort](https://github.com/TheAlgorithms/PHP/blob/master/sorting/selectionSort.php)
2020-10-03 07:26:14 +00:00
## String
2020-10-13 20:00:15 +02:00
* [Check Anagram](https://github.com/TheAlgorithms/PHP/blob/master/String/CheckAnagram.php)
2020-10-03 07:26:14 +00:00
* [Check Palindrome](https://github.com/TheAlgorithms/PHP/blob/master/String/CheckPalindrome.php)
* [Reverse String](https://github.com/TheAlgorithms/PHP/blob/master/String/ReverseString.php)
* [Reverse Words](https://github.com/TheAlgorithms/PHP/blob/master/String/ReverseWords.php)
2020-10-13 20:00:15 +02:00