james.rus52 / data_structure
Data Structure
1.0.0
2020-09-05 13:22 UTC
Requires (Dev)
- phpunit/phpunit: ^9.0.0
This package is auto-updated.
Last update: 2024-10-29 05:47:27 UTC
README
Data Strucures
This is my own simple implementation of basic data structures
- MyListNode - Simple object to store you data
- MyList - List with link to the next data node, implemented with MyListNode
- MyStack - Stack implementation with MyList
- MyQueue - Queue implementation with two instance of MyStake
- MyGraph - Graph with find fasters route by Dijkstra’s algorithm
How to install
composer require james.rus52/data_structure
How to use
See example_<structure>.php