-
This quiz has sections regarding:
- Generics
MyStackGroupSortedGroupGenericUtils- DifficultComparableTreeSet- Very Difficult
- Generics
- Description
- The purpose of this class is to implement a proper
Stack.
- The purpose of this class is to implement a proper
- Methods to Complete
void push(T value)T peek()T pop()Boolean isEmpty()
- Description
- The purpose of this class is to create a generic wrapper for a
Listobject
- The purpose of this class is to create a generic wrapper for a
- Methods to Complete
Integer count()void insert(T value)Boolean has(T value)T fetch(int indexOfValue)void delete(T value)void clear()Iterator<T> iterator()
- Description
- The purpose of this class is to create a generic wrapper for sorted
Listobject.
- The purpose of this class is to create a generic wrapper for sorted
- Methods to Complete
insert(T value)delete(T value)Integer indexOf(T value)
- Description
- The purpose of this class is to create a procedure to generate the power set of an
Setof objects.
- The purpose of this class is to create a procedure to generate the power set of an
- Methods to Complete
<T extends Comparable> Iterable<? extends Iterable<T>> powerSet(Set<T> originalSet)<T extends Comparable> Iterable<? extends Iterable<T>> powerSet(T... originalSet)
- Description
- The purpose of this class is to create subclass of a
TreeSet<T>which cancompareToother objects of the same type. - This shit is hard.
- The purpose of this class is to create subclass of a
- Methods to Complete
int compareTo(ComparableTreeSet<T> o)