Description

Linked Lists

In this problem you will practice implementing recursive functions that process linked lists.

– Skeleton code is provided in the hw3 folder in this assignment.

– There are two separate functions recursive functions that we will ask you to write.

– They are unrelated to each other (just part a, and part b of this problem), but each of the two problems below will use the following Node definition.

There are sub parts to this question which you can find in the documentation below, you only have to answer the parts that say TASKS, many of the pages introduce the topic for those that are unfamiliar with the concept of Recursion.