Download the PHP package yousafsyed/algorithms without Composer
On this page you can find all versions of the php package yousafsyed/algorithms. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download yousafsyed/algorithms
More information about yousafsyed/algorithms
Files in yousafsyed/algorithms
Package algorithms
Short Description Original Proposal: Using the right data structure or algorithm for the situation is an important aspect of programming. In computer science literature, many data structures and algorithms have been researched and extensively documented. However, there is still no standard library in Php implementing useful structures and algorithms like Red/Black Trees, tries, different sorting algorithms, etc. This project will create such a library with documentation on when to use a particular structure/algorithm. It will also come with a benchmark suite to compare performance in different situations.
License MIT
Informations about the package algorithms
algorithms
DESCRIPTION:
Written by Yousaf Syed
Original Proposal: Using the right data structure or algorithm for the situation is an important aspect of programming. In computer science literature, many data structures and algorithms have been researched and extensively documented. However, there is still no standard library in Php implementing useful structures and algorithms like Red/Black Trees, tries, different sorting algorithms, etc. This project will create such a library with documentation on when to use a particular structure/algorithm. It will also come with a benchmark suite to compare performance in different situations.
Install via composer
Usage
FEATURES:
Done so far:
* Containers
- Stack Containers\Stack
* Search algorithms
- Binary Search Algorithms\Search::binary_search
- Knuth-Morris-Pratt Algorithms\Search::kmp_search
- Jump Search Algorithms\Search::jump_search
* Sort algorithms
- Bubble sort Algorithms\Sort::bubble_sort
- Comb sort Algorithms\Sort::comb_sort
- Selection sort Algorithms\Sort::selection_sort
- Heapsort Algorithms\Sort::heap_sort
- Insertion sort Algorithms\Sort::insertion_sort
LICENSE:
(The MIT License)
Algorithms and Containers project is Copyright (c) 2015 Yousaf Syed
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.