Final answer:
My Min iList is a simplified collection type similar to Array List. It uses an array to store elements and dynamically grows the array as the list is updated. The class needs to implement the Mini List interface with a single generic type.
Step-by-step explanation:
My Mini List is a simplified collection type similar to Array List. It internally uses an array to store elements and dynamically grows the array as the list is updated through its methods. The class needs to implement the Mini List interface with a single generic type. The My Mini List class should have two instance variables - one for the current size of the list and an array called 'object Store' to store the elements.
The size of the initial array should be set to 10. The class should implement the following methods: public My Mini List(): Initializes the object Store array and sets the size variable to 0. public void add(T element): Adds an element to the end of the object Store array. If the array is full, a new array twice the size is created, the existing elements are copied, and the new element is added. public T get(int index): Returns the element at the given index if it is within the bounds of the list.
public int getIndex(T element): Searches for the first occurrence of the given element in the list and returns its index. Returns -1 if the element is not found. public void set(int index, T element): Sets the value at the given index to the provided element. public int size(): Returns the current size of the list. public T remove(int index): Removes and returns the element at the given index. The remaining elements are shifted to fill the gap.