Short micro-blog posts that are more akin to a rant from your conspiracy theory neighbor than they are thoughtful prose.
-
Stacks, Queues, and Deques – Data Structures in PHP
Reading Time: 7 minutesIn my first post of this series on Singly Linked Lists, I mentioned that a list with the ability to add, get, or remove data from more than just the end of the list starts to behave more like a Deque. Then, I said I would cover those details in a later…
-
Doubly Linked Lists – Data Structures in PHP
Reading Time: 10 minutesRead the previous article on Singly Linked Lists in PHP here! Read the starting post of the series here! All code in this series can be found on Github Doubly Linked List Principles Available Methods I took a decent amount of time to read through various array and list methods available to…
-
Singly Linked Lists – Data Structures in PHP
Reading Time: 5 minutesAll 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 list.…