Better Programming

Advice for programmers.

Follow publication

Member-only story

How To Create a Linked List in Python

Artturi Jalli
Better Programming
Published in
6 min readJun 16, 2021

--

Chain
Photo by Karine Avetisyan on Unsplash.

What Is a Linked List?

A linked list is a basic data structure. It is a collection of nodes that connects each node to the next node with a pointer.

Each node consists of two items:

  • Data (such as a number)
  • Pointer to the next node

Here is an illustration of a linked list:

Diagram explaining linked lists
A linked list forms a chain of nodes. Each node holds data and points to the next node. Image by the author.

How To Implement a Linked List in Python

Next, you will learn how to implement a linked list in Python. In addition, you will implement useful linked list methods, such as the insertion and deletion of nodes.

Let’s get started.

Basic structure of a linked list

Let’s create a base class to represent a linked list. A linked list object only needs to know from where the list starts. This starting node is also known as the head node:

Let’s then create a class that represents the nodes of the linked list:

As described, a node holds data and a pointer to the next node.

Awesome. Now you have a basic linked list that is ready for testing.

Let’s test your linked list by creating three nodes and a linked list object. Let’s convert the first node as the head node of the list. Then let’s set the second node as the next node of the first one, and so on:

--

--

No responses yet