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 17:58:40 +00: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 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)
|
|
|
|
|
2023-04-21 05:49:44 +00:00
|
|
|
## Datastructures
|
|
|
|
* [Singlylinkedlist](./DataStructures/SinglyLinkedList.php)
|
|
|
|
|
2022-11-01 04:32:37 +01:00
|
|
|
## Graphs
|
2022-11-29 12:51:02 +05:30
|
|
|
* [Breadthfirstsearch](./Graphs/BreadthFirstSearch.php)
|
2022-11-29 07:21:19 +00:00
|
|
|
* [Depthfirstsearch](./Graphs/DepthFirstSearch.php)
|
2020-10-15 00:43:22 +05:30
|
|
|
|
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)
|
2022-10-16 01:41:56 -03:00
|
|
|
* [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)
|
2023-04-21 12:12:49 +02:00
|
|
|
* [Problem4](./Maths/ProjectEuler/Problem4.php)
|
2022-08-03 17:58:40 +00:00
|
|
|
* [Problem5](./Maths/ProjectEuler/Problem5.php)
|
|
|
|
* [Problem6](./Maths/ProjectEuler/Problem6.php)
|
|
|
|
* [Problem7](./Maths/ProjectEuler/Problem7.php)
|
2023-04-21 12:30:04 +02:00
|
|
|
* [Problem8](./Maths/ProjectEuler/Problem8.php)
|
2022-08-03 17:58:40 +00:00
|
|
|
* [Problem9](./Maths/ProjectEuler/Problem9.php)
|
2023-04-24 06:25:55 +02:00
|
|
|
* [Problem10](./Maths/ProjectEuler/Problem10.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)
|
2022-11-17 01:16:00 +01:00
|
|
|
* [Interpolationsearch](./Searches/InterpolationSearch.php)
|
2022-08-03 17:58:40 +00:00
|
|
|
* [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-10-15 00:43:22 +05:30
|
|
|
|
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)
|
2020-10-15 00:43:22 +05:30
|
|
|
|
2022-07-24 00:55:07 -06:00
|
|
|
## 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)
|
2023-04-21 05:49:44 +00:00
|
|
|
* Datastructures
|
|
|
|
* [Singlylinkedlisttest](./tests/DataStructures/SinglyLinkedListTest.php)
|
2022-11-01 04:32:37 +01:00
|
|
|
* Graphs
|
2022-11-29 07:21:19 +00:00
|
|
|
* [Breadthfirstsearchtest](./tests/Graphs/BreadthFirstSearchTest.php)
|
2022-11-01 04:32:37 +01:00
|
|
|
* [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)
|
2022-07-24 00:55:07 -06:00
|
|
|
|
|
|
|
## Utils
|
2022-08-03 17:58:40 +00:00
|
|
|
* [Arrayhelpers](./Utils/ArrayHelpers.php)
|
|
|
|
* [Executiontime](./Utils/ExecutionTime.php)
|