Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a method called removeEvens that removes the values in even-numbered indexes from u list, returning a new list that contains those value in their
Write a method called removeEvens that removes the values in even-numbered indexes from u list, returning a new list that contains those value in their original order. For example, consider a variable list 1 that stores the values [8, 13, 17, 4, 9, 12, 98, 41, 7, 23, 0, 92] and imagine that the following call is made: LinkedIntList list2 = listl.removeEvens(); After the call, list 1 should store [13, 4, 12, 41, 23, 92] and list2 should store [8, 17, 9, 98, 7, 0). You may not call any methods of the class other than the constructor to solve this problem. You may not create any new nodes nor change the values stored in data fields to solve this problem. You must solve it by rearranging the links of the list
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