Question: Complete the Link class by writing methods described below. Do not use loops, on create any more methods (other than those specified), class or instance
Complete the Link class by writing methods described below. Do not use loops, on create any more methods (other than those specified), class or instance variables. public class Link private Link next; /ull if this is the last link private int value public Link(Link n. int v) next n; value = v; Do not use loops, or create any more methods (other than those specified), class or instance variables. 1. Write a recursive instance method count that takes no parameters and returns an int. Return the number of links that hold the value zero, with the exception that the last link in the list is not included in the count. For example, for the linked list, {(first) 503100 (last) it would return the value 2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
