Lecture 21 Objectives
At the end of today's class you should
KNOW:
- that the recursive data definition for a linked list leads to a
recursive solution to many linked-list problems (remember CS 1101?)
BE ABLE TO:
- write code that recursively processes a linked list
Sample Exam Question:
Suppose head is a pointer to a linked list. Write a recursive C function
that will display the data in each node in the linked list.