I have a
List<Cat>
sorted by the cats’ birthdays. Is there an efficient Java Collections way of finding all the cats that were born on January 24th, 1983? Or, what is a good approach in general?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Collections.binarySearch().Assuming the cats are sorted by birthday, this will give the index of one of the cats with the correct birthday. From there, you can iterate backwards and forwards until you hit one with a different birthday.
If the list is long and/or not many cats share a birthday, this should be a significant win over straight iteration.
Here’s the sort of code I’m thinking of. Note that I’m assuming a random-access list; for a linked list, you’re pretty much stuck with iteration. (Thanks to fred-o for pointing this out in the comments.)