Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I am having trouble coming up with a way to come up with this method. Directions: Your add() method in the OrderedList is replacing the

I am having trouble coming up with a way to come up with this method.

Directions:

Your add() method in the OrderedList is replacing the add() method in the ListNodePlus class. You have access to that class, take a look at the code there. Specifically, this method:

public void add(int idx, E it) { if (idx < 0 || idx > countOfElements) { return; } Node curr = head.getNext(); Node prev = head; for (int i = 0; i < idx; i++) { prev = curr; curr = curr.getNext(); } prev.setNext(new Node(it, curr)); countOfElements++; }

This method moves a pair of pointers, curr and prev, a number of times (idx) until they point to the location where you want to insert the new node. In your code, the code you need to come up for the add() method in the ListNodePlus class, you need to do something VERY similar. You need to move curr and prev until you find the place where you will insert the new node. But, instead of moving it a number of times, you move them until you find the place based on the order of the data.

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

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

12th Edition

978-0030243998, 30243998, 324422695, 978-0324422696

Students also viewed these Programming questions

Question

Verify that for all integers n, sin [(12n + 1) / 6] = 1 / 2.

Answered: 1 week ago