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-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
|
|
|
|
* [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)
|