Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Practice Program: Write a new class StringArrayEveryNthIterator, which should be very similar to StringArrayEvensIterator, except that it returns every nth value. Also write a short
Practice Program: Write a new class StringArrayEveryNthIterator, which should be
very similar to StringArrayEvensIterator, except that it returns every nth value. Also write a short main method that creates and populates at least two different arrays and iterates over each with at least two different values of n Hint: you will need to tell your iterator class the value of n when it is constructed, and it will need to remember that value. Use the same mechanisms you would to do this for any Java class. It doesn't matter that this one happens to be an implementation of an iterator.
Next, we will do the same thing but with the SimpleLinkedList class. This time, the new class that implements the Iterator interface will be a nonpublic class in the same file as the SimpleLinkedList class just like its existing traditional iterator Name it SLLEveryNthIterator. You will also add a new method to SimpleLinkedList called everyNthIterator that will construct and return an instance of your new iterator class.
Since this is a generic class, it is not restricted to a single data type, so you will need to use type parameters as appropriate.
Practice Program: Implement the new SLLEveryNthIterator class and the
everyNthIterator method in SimpleLinkedList.java. Test your iterator by adding
a main method. Tests should use at least different data types, with different values of n foreach, and with different list sizes each.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started