public class Elist3 { public static void main(String[] args) { EmployeeList staff = new EmployeeList(); insertSorted(staff, new Employee("Hacker, Harry", 35000.0)); insertSorted(staff, new Employee("Reindeer, Rudolf", 63000.0)); insertSorted(staff, new Employee("Cracker, Carl", 48000.0)); insertSorted(staff, new Employee("Lam, Larry", 78000.0)); insertSorted(staff, new Employee("Sandman, Susan", 51500.0)); find(staff, "Hacker, Harry"); /* moves cursor to Harry */ staff.erase(); print(staff); } }