Seminar date: February 17
Good Morning! Welcome Back!!!

- Review equals method
- “identity” (location in memory)
- “state” (coder defined object content/data)
- Review Comparable (compareTo)
- not only determines if objects are equal, but also determines the value “weight” of objects.
- coder can compare objects in any way they want
- type casting<>
- comparing Strings (invoke compareTo method)
- can compare as many data types as you want with Comparable
- Review Comparator (compare)
- import Comparator
- external to “the” class so we can compare objects in any way we would like
- compare is of the tester class, you don’t have to mess with any code inside the class AND
- you can compare two objects anyway you would like
NEW: Sequential and Binary Searching
- Big O
- Sequential (aka Linear searching)
- Binary Searching