Question
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
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
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