Skip to content

Tag Archives: Python LinkedList-exercises

Prerequisite: XOR Linked List An ordinary Doubly Linked List requires space for two address fields to store the addresses of previous and next nodes. A… Read More
Creating custom data types can be tricky, especially when you want to use it like any other data type. Linked List can be thought of… Read More
Linked list is a simple data structure in programming, which obviously is used to store data and retrieve it accordingly. To make it easier to… Read More
A stack is a collection of objects that are inserted and removed using Last in First out Principle(LIFO). User can insert elements into the stack,… Read More
A Queue is a collection of objects that are inserted and removed using First in First out Principle(FIFO). Insertion is done at the back(Rear) of… Read More
Given a linked list. The task is to reverse the order of the elements of the Linked List using an auxiliary Stack. Examples:  Input :… Read More
Given a singly linked list, find the middle of the linked list. Given a singly linked list, find the middle of the linked list. For… Read More
Given pointer to the head node of a linked list, the task is to reverse the linked list. We need to reverse the list by… Read More

Start Your Coding Journey Now!