Answer:
See explaination
Step-by-step explanation:
class YourSimpleLinkedList<E> extends SimpleLinkedList<E> {
public boolean search(E value) {
if (value == null)
throw new IllegalArgumentException();
Item temp = start;
while (temp != null) {
if (temp.value.equals(value))
return true;
temp = temp.next;
}
return false;
}
}