Reverse Linked List
In this lesson, we will learn how to reverse a linked list using recursion.
We'll cover the following
What is a Linked List?
A linked list is a data structure that stores data in the form of a sequence of nodes. Each Node holds data along with a forward pointer to the next Node in the list.
As depicted in the illustration below, a linked list is formed by Nodes that are connected like a chain.
Level up your interview prep. Join Educative to access 80+ hands-on prep courses.