Search code examples
phplinked-list

Implement linked list in php


How should I implement a linked list in PHP? Is there a implementation built in into PHP?

I need to do a lot of insert and delete operations, and at same time I need to preserve order.

I'd like to use only PHP without any special extensions.


Solution

  • There is SplDoublyLinkedList. Is this okay, too?