Now further on my journey into trying to become a self-taught software engineer, I tackled linked lists. They're my first data structure outside of arrays that I've tackled, and I had no experience ...
Linked List is a chain of nodes, where each node stores some data and a reference (link) to the next node in the chain. These lists are dependant on keeping track of what it considered to be the "head ...