Data/Types/ResourceAbstractLinkedList.php

Linked List Abstract Class

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.

Classes

AbstractLinkedList Linked List Abstract Class