Search⌘ K

Basic Linked List Operations

Explore basic operations of singly linked lists including insertion at head or tail, deletion by value or at head, searching elements, and checking if the list is empty. This lesson helps you understand these fundamental functions and prepares you for implementing and using linked lists effectively in coding interviews.

We'll cover the following...

Introduction

The primary operations that generally form a part of the LinkedList class are listed below:

  • insertAtTail(data) - inserts an element at the end of the linked list
  • insertAtHead(data) - inserts an element at the start/head of the linked list
  • delete(data) -
...