Problem Statement: Delete Head of a Doubly Linked List Given a doubly linked list, your task is to delete the
Continue readingCategory: Linked List
LinkedList in Java
In this article, we will be discussing the LinkedList in Java and its different operations like insertion, traversal. Prerequisite: Linked
Continue readingLinked List : Introduction
Imagine you are given a task where you have to maintain a data entry of cars entering a parking lot.
Continue readingSingly Linked List vs Doubly Linked List
Linked List – Linked List consists of nodes attached to each other where every node holds the address of the
Continue readingClone Linked List with Random and Next Pointer
In this article we will solve the most asked coding interview problem “Clone Linked List”. Problem Statement: Given a Linked
Continue readingRotate a Linked List
In this article, we will solve the problem: “Rotate a Linked List” Problem Statement: Given the head of a linked
Continue readingDetect a Cycle in a Linked List
In this article, we will solve the most asked interview question: Detect a Cycle in a Linked List Problem Statement:
Continue readingFlattening a Linked List
Flattening a Linked List Problem Statement: Given a Linked List of size N, where every node represents a sub-linked-list and
Continue readingStarting point of loop in a Linked List
In this article, we will learn how to solve the most asked coding interview question: “Starting point of the loop
Continue readingCheck if given Linked List is Plaindrome
Check if the given Linked List is Palindrome Problem Statement: Given the head of a singly linked list, return true
Continue reading