0
0
DSA Pythonprogramming~10 mins

Traversal Forward and Backward in DSA Python - Execution Trace

Choose your learning style9 modes available
Concept Flow - Traversal Forward and Backward
Start at head node
Visit current node
Move to next node
Is current node None?
NoRepeat visit
Yes
Reached end, start backward traversal
Visit current node
Move to previous node
Is current node None?
NoRepeat visit
Yes
Traversal complete
Traverse nodes from head to tail visiting each node forward, then traverse backward from tail to head visiting each node.
Execution Sample
DSA Python
class Node:
    def __init__(self, val):
        self.val = val
        self.next = None
        self.prev = None

# Traverse forward and backward
Traverse a doubly linked list forward from head to tail, then backward from tail to head.
Execution Table
StepOperationCurrent NodePointer ChangesVisual State
1Start at headNode(1)None1 <-> 2 <-> 3 <-> 4 <-> None
2Visit nodeNode(1)None1 <-> 2 <-> 3 <-> 4 <-> None
3Move nextNode(2)None1 <-> 2 <-> 3 <-> 4 <-> None
4Visit nodeNode(2)None1 <-> 2 <-> 3 <-> 4 <-> None
5Move nextNode(3)None1 <-> 2 <-> 3 <-> 4 <-> None
6Visit nodeNode(3)None1 <-> 2 <-> 3 <-> 4 <-> None
7Move nextNode(4)None1 <-> 2 <-> 3 <-> 4 <-> None
8Visit nodeNode(4)None1 <-> 2 <-> 3 <-> 4 <-> None
9Move nextNoneNone1 <-> 2 <-> 3 <-> 4 <-> None
10Start backward at tailNode(4)None1 <-> 2 <-> 3 <-> 4 <-> None
11Visit nodeNode(4)None1 <-> 2 <-> 3 <-> 4 <-> None
12Move prevNode(3)None1 <-> 2 <-> 3 <-> 4 <-> None
13Visit nodeNode(3)None1 <-> 2 <-> 3 <-> 4 <-> None
14Move prevNode(2)None1 <-> 2 <-> 3 <-> 4 <-> None
15Visit nodeNode(2)None1 <-> 2 <-> 3 <-> 4 <-> None
16Move prevNode(1)None1 <-> 2 <-> 3 <-> 4 <-> None
17Visit nodeNode(1)None1 <-> 2 <-> 3 <-> 4 <-> None
18Move prevNoneNone1 <-> 2 <-> 3 <-> 4 <-> None
19Traversal completeNoneNone1 <-> 2 <-> 3 <-> 4 <-> None
💡 Traversal stops when current node becomes None in both forward and backward directions.
Variable Tracker
VariableStartAfter Step 3After Step 5After Step 7After Step 9After Step 12After Step 14After Step 16After Step 18
currentNode(1)Node(2)Node(3)Node(4)NoneNode(3)Node(2)Node(1)None
directionforwardforwardforwardforwardforwardbackwardbackwardbackwardbackward
Key Moments - 3 Insights
Why do we check if current node is None to stop traversal?
Because when current becomes None, it means we have moved past the last node (forward) or before the first node (backward), so traversal ends. See steps 9 and 18 in execution_table.
Why do we need both next and prev pointers in traversal?
Next pointer lets us move forward, prev pointer lets us move backward. Without prev, backward traversal is not possible. This is shown by pointer changes in execution_table where current moves using next or prev.
What happens if the list is empty (head is None)?
Traversal stops immediately because current is None at start, so no nodes are visited. This is implied by exit condition in execution_table.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table, what is the current node at step 7?
ANode(3)
BNode(4)
CNode(2)
DNone
💡 Hint
Check the 'Current Node' column at step 7 in execution_table.
At which step does the forward traversal end?
AStep 9
BStep 18
CStep 19
DStep 8
💡 Hint
Look for when current node becomes None during forward traversal in execution_table.
If the list had only one node, how many visit operations would happen in total?
A1
B2
C3
D4
💡 Hint
Consider visiting the single node forward and backward as shown in execution_table steps.
Concept Snapshot
Traversal Forward and Backward in Doubly Linked List:
- Start at head, visit nodes moving via next pointer.
- Stop when current is None (end of list).
- Then start at tail, visit nodes moving via prev pointer.
- Stop when current is None (start of list).
- Requires next and prev pointers for bidirectional traversal.
Full Transcript
This concept shows how to traverse a doubly linked list forward from head to tail by following the next pointers, visiting each node. When the end is reached (current node is None), traversal reverses direction starting from the tail node, moving backward by following prev pointers until the start is reached (current node is None again). The execution table traces each step, showing the current node visited and the unchanged list structure. Key moments clarify why traversal stops when current is None and why both next and prev pointers are needed. The visual quiz tests understanding of node positions at specific steps and the total visits for a single-node list.