DEV Community

Cover image for Data Structures #1: Linked Lists
Thodoris Kouleris
Thodoris Kouleris

Posted on

Data Structures #1: Linked Lists

What is a linked list?

A linked list is a sequence of objects of the same type, where each object leads to the next and contains some information. Each such object (node) always holds at least these two pieces of information: a value and a reference to the next node. In some cases, a node may also point, besides to the next node, to the previous one.

read more

Top comments (0)