Learn practical skills, build real-world projects, and advance your career

linkedlistpractice

Use the "Run" button to execute the code.

!pip install jovian --upgrade --quiet
import jovian
# Execute this to save new versions of the notebook
jovian.commit(project="linkedlistpractice")

Linked List

A linked list is a data structure used for storing a sequence of elements. It's data with some structure (the sequence).

alt

We'll implement linked lists which support the following operations:

  • Create a list with given elements
  • Display the elements in a list
  • Find the number of elements in a list
  • Retrieve the element at a given position
  • Add or remove element(s)