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_2

Step: 3

blur-text-image_3

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

Intelligent Information And Database Systems Third International Conference Achids 2011 Daegu Korea April 2011 Proceedings Part 2 Lnai 6592

Authors: Ngoc Thanh Nguyen ,Chong-Gun Kim ,Adam Janiak

2011th Edition

3642200419, 978-3642200410

More Books

Students also viewed these Databases questions

Question

=+7. What is its position?

Answered: 1 week ago

Question

Consider this article:...

Answered: 1 week ago

Question

4. Does cultural aptitude impact ones emotional intelligence?

Answered: 1 week ago