Data/Types/ResourceLinkedListInterface.php

Linked List Interface

This list offers us a chance to have a sequence of data tied together purely by references. This means that it does NOT utilize an array or array operations, but instead relies on elements that connect to each other in a sequential fashion. This allows us to modify the contents of the list using the elements themselves, or at least their references.

Interfaces

LinkedListInterface The Basic Linked List Interface