Linked List

This lesson discusses the complexity of operations on a linked list.

We'll cover the following

Linked list is the natural counterpart to the array data-structure. In linked list's case we trade more time for less space. A linked list is made up of nodes, and each node has the following information:

  • value
  • pointer to next node

Level up your interview prep. Join Educative to access 70+ hands-on prep courses.