Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a Java method of the LinkedIntList class called removeAlternating that removes a node from each pair of nodes in a list in an alternating

Write a Java method of the LinkedIntList class called removeAlternating that removes a node from each pair of nodes in a list in an alternating fashion. In the first pair, the first number should be removed. In the second pair, the second number should be removed. In the third pair, it goes back to the first number being removed. This pattern repeats for pairs that follow. If the list has odd length, the last value should never be removed since it is not part of a pair. The values removed from the list should be returned in a new LinkedIntList with the values appearing the same order as the original list.

For example, if we had a variable list1 that stores the values: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]

After the following method call: LinkedIntList list2 = list1.removeAlternating();

list1 and list2 would store the following values:

list1: [2, 3, 6, 7, 10, 11]

list2: [1, 4, 5, 8, 9]

Notice that list2 stores the first values from pairs pair1, pair3, and pair5 and the second values from pairs pair2 and pair4 from the original list that were removed while all of the other values remained in list1. Notice that the number 11 was not removed from the list because it does not belong to a pair.

Your solution should follow the following restrictions:

You may define private helper methods to solve this problem, but otherwise you may not assume that any particular methods are available.

You are allowed to define your own variables of type ListNode, but you may not construct any new nodes.

You may not use any auxiliary data structure to solve this problem (no array, ArrayList, Stack, Queue, String, etc).

You also may not change any data fields of the nodes. You MUST solve this problem by rearranging the links of the lists.

Your solution must run in O(n) time where n is the length of the original list.

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

Beyond Big Data Using Social MDM To Drive Deep Customer Insight

Authors: Martin Oberhofer, Eberhard Hechler

1st Edition

0133509796, 9780133509793

More Books

Students also viewed these Databases questions

Question

Theyre selling a well designed machine.

Answered: 1 week ago

Question

What i8s the differences between efficiency and effectiveness

Answered: 1 week ago