james.rus52/data_structure

Data Structure

Maintainers

Package info

github.com/jamesRUS52/data-strucures

pkg:composer/james.rus52/data_structure

Statistics

Installs: 5

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2020-09-05 13:22 UTC

This package is auto-updated.

Last update: 2026-03-01 00:32:41 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