Question: public void addToFront(T data) { if ( size == backingArray . length - 1) { resize(); } addAtIndex(0, data); } private void resize() { T[]

public void addToFront(T data) { if (size == backingArray.length - 1) { resize(); } addAtIndex(0, data); }
private void resize() { T[] temp = (T[]) new Object[backingArray.length * 2]; for (int i = 0; i < backingArray.length; i++) { temp[i] = backingArray[i]; } backingArray = temp; }

Point off -3 because addAtIndex() doesn't resize properly.

How do I change my code?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!