- search(T) - Method in interface list.ListADT
-
Returns the index of the first occurrence of the specified item in this list,
or -1 if this list does not contain the item.
- search(T) - Method in class list.OrderedList
-
Returns the location of the data if found or -1 otherwise
- search(T) - Method in class list.UnorderedList
-
Returns the index of the first occurrence of the specified item in this list,
or -1 if this list does not contain the item.
- set(int, T) - Method in class list.List
-
Replaces the item at the specified position in this list with the specified item.
- set(int, T) - Method in interface list.ListADT
-
Replaces the item at the specified position in this list with the specified item.
- size() - Method in class list.List
-
Returns the number of items in this list.
- size() - Method in interface list.ListADT
-
Returns the number of items in this list.