Question: Write a method called removeLast that removes and returns the last value of a list of integers. For example, if a variable called list stores

Write a method called removeLast that removes and returns the last value of a list of integers. For example, if a variable called list stores the following values: [3, 6, 19, 24, -8, 0, 14] and you make the following call: int n = list.removeLast(); the variable n will be set to 14 and list will store: [3, 6, 19, 24, -8, 0] Your method should throw a NoSuchelementException if the list is empty. You are writing a method for the LinkedIntList class discussed in lecture: public class ListNode { public int data; // data stored in this node public ListNode next; // link to next node in the list
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
