Tag: LinkedList

  • Singly Linked Lists – Data Structures in PHP

    Singly Linked Lists – Data Structures in PHP

    Reading Time: 5 minutes All code in this series can be found on GitHub Linked Lists are where we start our journey in PHP Data Structures. Simply put, a linked list is data that is sequentially organized in which the start of the list (head) contains a reference to the next item (node) in the…