Answered step by step
Verified Expert Solution
Link Copied!

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 non-public 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 2 different data types, with 2 different values of n foreach, and with 2 different list sizes each.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database And Expert Systems Applications 23rd International Conference Dexa 2012 Vienna Austria September 2012 Proceedings Part 1 Lncs 7446

Authors: Stephen W. Liddle ,Klaus-Dieter Schewe ,A Min Tjoa ,Xiaofang Zhou

2012th Edition

3642325998, 978-3642325991

More Books

Students also viewed these Databases questions

Question

What are the stages of project management? Write it in items.

Answered: 1 week ago

Question

define what is meant by the term human resource management

Answered: 1 week ago