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.
Illustration of a linked list
If you want to learn more about the ...
Access this course and 1400+ top-rated courses and projects.