Skip to content

πŸ–‡ Linked List implementation in PHP.

License

Notifications You must be signed in to change notification settings

anglesoft/linked

Folders and files

NameName
Last commit message
Last commit date

Latest commit

28ad651 Β· Mar 10, 2019

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

πŸ–‡ Linked

Linked List implementation in PHP.

Installation

composer require angle/linked

Usage

Creating an empty list and appending items.

$list = new Angle\Linked\Linked;
$list->append('PHP');
$list->append('Ruby');
$list->append('Javascript');

print $list->head->next->next->data; // Javascript

Prepend elements to the list:

$list->prepend('Golang');

print $list->head->data; // Golang

Print the list:

print $list; // Golang, PHP, Ruby, Javascript

Contributing

Improvements are welcome! Feel free to submit pull requests.

Licence

MIT

Copyright Β© 2019 Angle Software