up vote 1 down vote favorite
share [g+] share [fb]

If I have an LinkedList of Employee objects...

Each employee has a Name, and an ID fields.

I have linkedList call list....

If I want to see if the list contains an employee I do:

list.contains(someEmployeeObject)

How about if I want to see if the the list contains an employee based on the imployee ID..

let's say I have the following method:

public boolean containsEmployeeByID(int id)

How can I know if the list contains the employee object with the parameter id?

link|improve this question

71% accept rate
Note LinkedList read performance isn't great. Even get(int) is slow. ArrayList is almost always a better idea. – Tom Hawtin - tackline May 2 '09 at 9:16
feedback

3 Answers

up vote 3 down vote accepted

Just walk the list and look for matches. If you do this often and change the list infreqently, build a Map index first.

List<Employee> list = ...
for (Employee e : list)
   if (e.getID() == id)
      return true;
return false;

That said, saving employees in a LinkedList?? What a strange example problem...

link|improve this answer
just a homework assignment... – user69514 May 2 '09 at 3:52
2  
Then to be honest, you should tag the question as homework. I've done it for you this time... – Chris Dolan May 2 '09 at 3:54
true, only in homework someone would possibly keep employee records in a linked list :) – Omry May 2 '09 at 9:45
feedback

Maybe you should be using a map with the key being an ID and value being the employee name or the employee object?

link|improve this answer
Sets don't have values. You mean a Map. – Chris Dolan May 2 '09 at 3:54
Indeed. Fixed........................ – Joe Philllips May 2 '09 at 3:55
But of course, to build the Map you need to walk the LinkedList... – Chris Dolan May 2 '09 at 3:58
feedback

You could override your equals() method to compare based on Id, however this typically is not a best practice.

Another option is to create a HashMap and then you can retrieve your employees by their Id.

for (Employee empl : list) {
    map.put(empl.getId(), empl);
}

String idLookup = "1234";

Employee employee = map.get(idLookup);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.