This file contains the example lists for Steve the Dev's PHP tutorials
- Examples/SLList.php : Singly Linked List example code
- Lists/ListInterface.php : Basic List interface that all lists should follow (at a minimum)
- Nodes/NodeInterface.php : Basic Linked-List Node interface that all nodes should follow (at a minimum)
- Nodes/SinglyLinkedNodeLInterface : Singly-Linked Node for use within Singly Linked Lists
- Lists/SinglyLinkedList.php : Singly Linked List