Reversing a Link List using Recursion

Duration: 4 min

This video lesson is available to enrolled students.

Enroll to watch — ISRO Scientist/Engineer 'SC'

AI Summary

An AI-generated summary of this video lecture.

This educational video provides a detailed walkthrough of reversing a singly linked list using a recursive algorithm in C. The instructor begins by presenting the code structure, specifically the `main` function calling `reverse(null, head)` and the recursive `reverse` function definition. He explains the two-pointer approach where `previous` and `current` are passed down the recursion stack. The core of the lesson involves a step-by-step trace of the execution on a list containing nodes 'a', 'b', 'c', and 'd', demonstrating how the call stack builds up and then unwinds to update the pointers in reverse order.

Chapters

  1. 0:00 2:00 00:00-02:00

    The instructor introduces the problem of reversing a linked list and displays the C code on the screen. He highlights the `main` function calling `reverse(null, head)` and the function signature `Void reverse(struct node* previous, current)`. He explains the logic: if `current` is not null, it recursively calls itself with `current` as the new `previous` and `current->next` as the new `current`. The base case is when `current` is null, at which point `Head` is set to `previous`. The instructor begins tracing the execution, writing down the call stack: `reverse(null, 10)`, `reverse(10, 20)`, `reverse(20, 30)`, and `reverse(30, 40)`, representing the addresses of nodes 'a', 'b', 'c', and 'd' respectively.

  2. 2:00 3:55 02:00-03:55

    The lecture continues with the base case execution and the unwinding phase. The instructor shows the final recursive call `reverse(40, null)`, where the condition `current != null` fails, triggering the `Else` block to set `Head = 40`. As the recursion returns, the line `Current->link = previous` executes. He traces this specifically: node 'd' (40) points to 'c' (30), node 'c' (30) points to 'b' (20), node 'b' (20) points to 'a' (10), and finally node 'a' (10) points to null. He draws the final state of the linked list on the diagram, showing the arrows reversed from d -> c -> b -> a, confirming the list is now reversed with 'd' as the new head.

The video successfully demystifies recursive linked list reversal by combining code analysis with a visual trace. The instructor effectively uses the call stack diagram to show how the 'previous' pointer accumulates the reversed sequence as the recursion unwinds. By explicitly mapping node addresses (10, 20, 30, 40) to the function arguments, he clarifies how the `Current->link = previous` statement physically reverses the pointers in memory, ensuring students understand both the logical flow and the memory manipulation involved.