Question: Consider an extendable table that supports both add and remove methods, as defined in the previous exercise. Moreover, suppose we grow the underlying array implementing
Consider an extendable table that supports both add and remove methods, as defined in the previous exercise. Moreover, suppose we grow the underlying array implementing the table by doubling its capacity any time we need to increase the size of this array, and we shrink the underlying array by half any time the number of (actual) elements in the table dips below N/4, where N is the current capacity of the array. Show that a sequence of n add and remove methods, starting from an array with capacity N = 1, takes O(n) time.
Step by Step Solution
3.44 Rating (154 Votes )
There are 3 Steps involved in it
Java Code import javautil public class ArrayImplementation private int arr private int size priv... View full answer
Get step-by-step solutions from verified subject matter experts
