Question: 5. Use Python and recursion to write a function called findValue that determines whether a given data value is in the linked list. The function

5. Use Python and recursion to write a function called findValue that determines whether a given data value is in the linked list. The function returns True if the value is present, and False otherwise. Here are some examples: >>findValue (10,n4) True >>findValue (40,n4) True >>findValue (50,n4) False the list has at least one element. 6. Use Python and recursion to write a function called findLastValue that returms the last value in a linked list. Here is an example: >>findLastValue (n4) 10 Note that your function must work on lists other than the example above. You may assume that the list has at least one element
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
