├── .gitignore ├── searching └── binary-search.php └── sorting ├── bubble-sort-algorithm.php ├── insertion-sort-algorithm.php ├── merge-sort-algorithm.php └── selection-sort-algorithm.php /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /searching/binary-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technopagan/Computer-Science-Algorithms/HEAD/searching/binary-search.php -------------------------------------------------------------------------------- /sorting/bubble-sort-algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technopagan/Computer-Science-Algorithms/HEAD/sorting/bubble-sort-algorithm.php -------------------------------------------------------------------------------- /sorting/insertion-sort-algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technopagan/Computer-Science-Algorithms/HEAD/sorting/insertion-sort-algorithm.php -------------------------------------------------------------------------------- /sorting/merge-sort-algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technopagan/Computer-Science-Algorithms/HEAD/sorting/merge-sort-algorithm.php -------------------------------------------------------------------------------- /sorting/selection-sort-algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technopagan/Computer-Science-Algorithms/HEAD/sorting/selection-sort-algorithm.php --------------------------------------------------------------------------------