inital commit

This commit is contained in:
gabriel venberg 2021-03-26 22:39:35 -05:00
commit d1948b0e58
67 changed files with 5280 additions and 0 deletions

View file

@ -0,0 +1,31 @@
/*
* Data Structures & Algorithms 6th Edition
* Goodrich, Tamassia, Goldwasser
* Code Fragment 7.1
*
* An implementation of the List interface
* */
/**
*a simplified version of the java.util.List interface.
* @author Gabriel Venberg
*/
public interface List<E> {
/** returns the number of elements in the list*/
int size();
/**returns whether the list is empty*/
boolean isEmpty();
/**returns but does not remove the element at index i.*/
E get(int i) throws IndexOutOfBoundsException;
/**replaces the element at index i with e, and returns the replacement element.*/
E set(int i, E e) throws IndexOutOfBoundsException;
/**inserts element e to be at index i, shifting all subsequent elements later*/
void add(int i, E e) throws IndexOutOfBoundsException;
/**removes and returns the element at index i, shifting subsequent elements earlier*/
E remove(int i) throws IndexOutOfBoundsException;
}