Question: // Returns the element at the specified index in this list. // Be noted that the listnode at head.next has index 0 and // the
// Returns the element at the specified index in this list.
// Be noted that the listnode at head.next has index 0 and
// the last list node has index of size()-1.
// if index < 0 or index >= this.size, throws IndexOutOfBoundsException.
public Object get(int index) throws IndexOutOfBoundsException{
//code here
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
