...

>

Introduction

Introduction

This lesson introduces you to the ​singly linked list and implements its structure in Python.

For the sake of this course, we will go over the following different types of linked lists and implement them in Python:

  1. Singly Linked Lists
  2. Doubly Linked Lists
  3. Circular Linked List

Below is a simple depiction of a singly linked list:

Structure

Every linked list consists of nodes, as shown in ...