Tutorials
Courses
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
DSA
22.8K+ articles
Python
21.3K+ articles
Linked List
1.2K+ articles
Stack
436+ articles
python-modules
399+ articles
Queue
371+ articles
Linked Lists
302+ articles
Python-DSA
233+ articles
Python DSA-exercises
27+ articles
Python LinkedList-exercises
7 posts
Recent Articles
Popular Articles
Python | Stack using Doubly Linked List
Last Updated: 05 January 2023
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, and can only access or r...
read more
Linked List
Stack
Python
DSA
Python DSA-exercises
Python LinkedList-exercises
Python-DSA
Python | Queue using Doubly Linked List
Last Updated: 05 January 2023
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 the Queue and elements ar...
read more
Linked List
Queue
Python
DSA
Python DSA-exercises
Python LinkedList-exercises
Python-DSA
Python Library for Linked List
Last Updated: 10 January 2023
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 imagine, it is more like a d...
read more
Python
Linked Lists
python-modules
Python DSA-exercises
Python LinkedList-exercises
Python-DSA
Pretty print Linked List in Python
Last Updated: 26 February 2023
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 as an example of a custom data type. I...
read more
Python
DSA
Linked Lists
python-utility
Python DSA-exercises
Python LinkedList-exercises
Python-DSA
Implementation of XOR Linked List in Python
Last Updated: 06 January 2023
Prerequisite: XOR Linked ListAn ordinary Doubly Linked List requires space for two address fields to store the addresses of previous and next nodes. A memory-efficient ver...
read more
Python
Data Structures
DSA
Data Structures
Python DSA-exercises
Python LinkedList-exercises
Python-DSA
Python program to Search an Element in a Circular Linked List
Last Updated: 18 May 2022
A linked list is a kind of linear data structure where each node has a data part and an address part which points to the next node. A circular linked list is a type of lin...
read more
Technical Scripter
Python
Python Programs
Technical Scripter 2020
Linked Lists
Data Structures
Python DSA-exercises
Python LinkedList-exercises
Python-DSA
Reverse a Linked List - Python
Last Updated: 21 February 2025
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 changing links between nodes.Examples:Input: head: ...
read more
Python
Python DSA-exercises
Python LinkedList-exercises
Python-DSA
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !