Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a method removeEvens that removes the values in even-numbered indexes from the list, returning a new list that contains those values in their original

Write a method removeEvens that removes the values in even-numbered indexes from the list, returning a new list that contains those values in their original order.

For example, consider a variable 'list1' that stores the following sequence of values.

list1 = [8, 13, 17, 4, 9, 12, 98, 41, 7, 23, 0, 92]

and imagine that the following call is made:

LinkedIntList list2 = list1.removeEvens();

After the call, list1 should store [13, 4, 12, 41, 23, 92] and list2 should store [8, 17, 9, 98, 7, 0]

*You are not allowed to create any new nodes nor change the values stored in data fields. You must solve the problem by rearranging the links of the list.

Plz help! This is a test problem from Java data structure class.

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

Fundamentals Of Database Management Systems

Authors: Mark L. Gillenson

3rd Edition

978-1119907466

More Books

Students also viewed these Databases questions