Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

First of all, please correct me If I am wrong. I want to find index of Item (i.e String value) from ArrayList<CustomType> without using For Loop.

POJO:

id;
name;

Code:

ArrayList<POJO> list = new ArrayList<POJO>;

//Lots of data added to these list...

Now I want to find the id of particular name from the arraylist without using below kind of for loop.

String id = null;
// TODO Auto-generated method stub
for (int i = 0; i < list.size(); i++) {
    if("ABCD".equalsIgnoreCase(list.get(i).getName())) {
        id = list.get(i).getId();
        break;
    }
}

Ideally I don't want to implement the For loop because in some cases i have 500+ data inside the List and to find index using a For loop is not a good way to do this.

share|improve this question
Maybe you should use Map<String, POJO> with the String being the name instead? – ShyJ Nov 12 '12 at 9:47
1  
500 elements is not a lot, chances are this loop has no real effect on the performance of your code (even 'though it is inefficient). – Joachim Sauer Nov 12 '12 at 9:49
@JoachimSauer, But I have to think of future also. May be it increase up to thousands or more than that. So that is the concern. BYW thanks for your kind response. – Scorpion Nov 12 '12 at 9:55

5 Answers

If you need to search on a string value you should use a HashMap instead of ArrayList.

share|improve this answer

Finding element in this way where complexity would be give you BIG-O (n). I think if you Map that would gives you better result.

HashMap would be better choice. - Where Complexity would be O(1).

share|improve this answer
Ok. Yes I can use HashMap<String, String> for this. Thanks for your suggestion @Quoi. – Scorpion Nov 12 '12 at 9:59

You can use list.indexOf(), but in order to make it work, you need to override equals and hasCode of your POJO.

By default, two objects will be considered equal if they have the same reference. You can overwrite equals to work for your case:

public boolean equals(Object o) {
  if (!(o instanceof POJO) {
    return false;
  }
  POJO other = (POJO) o;
  return name.equalsIgnoreCase(other.getName());
}

Overridding equals would suggest you override hashCode. For example:

public int hashCode() {
  return name.hashCode();
}
share|improve this answer
1  
What was the down-vote for? – Dan Nov 12 '12 at 9:52
1  
This does not address the inefficiency mentioned in the question, it's "just" another way to do what the code in the question does. Also: depending on the size/use of the POJO, instantiating one just to search for a equally-named on is a bad idea. Also: most of the time having an equals() implementation on a POJO that doesn't consider the id is a bad idea. – Joachim Sauer Nov 12 '12 at 9:55

You can use the List.indexOf() - but you must make sure you also override POJO.equals() - (and as part of the convention - also hashCode().

Note that nevertheless - the result will be O(n) - an alternative could be to use an sorted array (POJO[]) and use Arrays.binarySearch() or a Set/Map.

If you use an array and binarySearch() - you must make sure that POJO also implements Comparable<POJO>


Note that for a static data (your list doesn't change often/at all) - though arrays and binarySearch() is "worse" then HashSet in terms of big-O notations, in practice - it is often much faster, especially for relatively short lists.
In terms of big-O notation, a hash based solution offers a O(1) average case accessing.

share|improve this answer
1  
binarySearch also requires the List to be sorted. – Joachim Sauer Nov 12 '12 at 9:54
@JoachimSauer Yeap, of course - I thought it was implicitly obvious, I'll add an explicit indication. – amit Nov 12 '12 at 9:55
up vote 0 down vote accepted

Thank you all for your kind and quick response. But a Special thanks to Joachim Sauer. You are absolutely right that 500 elements is not a lot, chances are this loop has no real effect on the performance of your code (even 'though it is inefficient). Even I try it up to 5000 elements and still there is no negative impact on the performance.

Thank you all once again and thank you for your comment Joachim Sauer.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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