Introduction to Singly Linked List

Learn more about Singly Linked List in DSA Self Paced Course

What is Singly Linked List?

A singly linked list is a linear data structure in which the elements are not stored in contiguous memory locations and each element is connected only to its next element using a pointer.

Singly Linked List

Singly Linked List

Topics:

Introduction:

  1. Introduction to Linked List
  2. Singly Linked List Tutorial
  3. Singly Linked List definition & meaning DSA
  4. Linked List vs Array

Basic Operations:

  1. Linked List Insertion
  2. Search an element in a Linked List (Iterative and Recursive)
  3. Find Length of a Linked List (Iterative and Recursive)
  4. Reverse a linked list
  5. Linked List Deletion (Deleting a given key)
  6. Linked List Deletion (Deleting a key at given position)
  7. Write a function to delete a Linked List

Some Problems on Singly Linked List:

Quick Links :



  • Last Updated : 14 Mar, 2024

Share your thoughts in the comments