2021-02-15 01:44:51 +00:00
|
|
|
# List of all files
|
2020-10-15 00:43:22 +05:30
|
|
|
|
2020-10-03 07:26:14 +00:00
|
|
|
## Ciphers
|
2022-08-03 11:37:25 +08:00
|
|
|
|
|
|
|
- [Caesarcipher](./Ciphers/CaesarCipher.php)
|
|
|
|
- [Monoalphabeticcipher](./Ciphers/MonoAlphabeticCipher.php)
|
|
|
|
- [Morsecode](./Ciphers/MorseCode.php)
|
|
|
|
- [Xorcipher](./Ciphers/XORCipher.php)
|
2020-10-15 00:43:22 +05:30
|
|
|
|
2021-02-15 01:44:51 +00:00
|
|
|
## Conversions
|
2022-08-03 11:37:25 +08:00
|
|
|
|
|
|
|
- [Binarytodecimal](./Conversions/BinaryToDecimal.php)
|
|
|
|
- [Decimaltobinary](./Conversions/DecimalToBinary.php)
|
|
|
|
- [Hexadecimaltodecimal](./Conversions/HexadecimalToDecimal.php)
|
|
|
|
- [Octaltodecimal](./Conversions/OctalToDecimal.php)
|
2020-10-15 00:43:22 +05:30
|
|
|
|
2020-10-13 20:00:15 +02:00
|
|
|
## Maths
|
2022-08-03 11:37:25 +08:00
|
|
|
|
|
|
|
- [Absolutemax](./Maths/AbsoluteMax.php)
|
|
|
|
- [Absolutemin](./Maths/AbsoluteMin.php)
|
|
|
|
- [Checkprime](./Maths/CheckPrime.php)
|
|
|
|
- [Factorial](./Maths/Factorial.php)
|
|
|
|
- [Fastexponentiation](./Maths/FastExponentiation.php)
|
|
|
|
- [Fibonacci](./Maths/Fibonacci.php)
|
|
|
|
- [Fibonacci2](./Maths/Fibonacci2.php)
|
|
|
|
- [Perfectsquare](./Maths/PerfectSquare.php)
|
|
|
|
- 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 11:37:25 +08:00
|
|
|
|
|
|
|
- [Binarysearch](./Searches/BinarySearch.php)
|
|
|
|
- [Fibonaccisearch](./Searches/FibonacciSearch.php)
|
|
|
|
- [Jumpsearch](./Searches/JumpSearch.php)
|
|
|
|
- [Linearsearch](./Searches/LinearSearch.php)
|
|
|
|
- [Lowerbound](./Searches/LowerBound.php)
|
|
|
|
- [Upperbound](./Searches/UpperBound.php)
|
2020-10-15 00:43:22 +05:30
|
|
|
|
2020-08-10 10:19:45 +08:00
|
|
|
## Sorting
|
2022-08-03 11:37:25 +08: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)
|
2020-10-15 00:43:22 +05:30
|
|
|
|
2022-07-24 00:55:07 -06:00
|
|
|
## Strings
|
2022-08-03 11:37:25 +08: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 11:37:25 +08:00
|
|
|
|
|
|
|
- Ciphers
|
|
|
|
- [Cipherstest](./tests/Ciphers/CiphersTest.php)
|
|
|
|
- [Monoalphabeticciphertest](./tests/Ciphers/MonoAlphabeticCipherTest.php)
|
|
|
|
- [Morsecodetest](./tests/Ciphers/MorseCodeTest.php)
|
|
|
|
- Conversions
|
|
|
|
- [Conversionstest](./tests/Conversions/ConversionsTest.php)
|
|
|
|
- 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)
|
2022-07-24 00:55:07 -06:00
|
|
|
|
|
|
|
## Utils
|
2022-08-03 11:37:25 +08:00
|
|
|
|
|
|
|
- [Arrayhelpers](./Utils/ArrayHelpers.php)
|
|
|
|
- [Executiontime](./Utils/ExecutionTime.php)
|