I have a String[] with values like so:

public static final String[] VALUES = new String[] {"AB","BC","CD","AE"};

Given String s, is there a good way of testing whether VALUES contains s?

link|improve this question

10  
Such a simple question, yet there are three good answers, all of which are different. +1 – Thomas Owens Jul 15 '09 at 0:09
Long way around it, but you can use a for loop: "for (String s : VALUES) if (s.equals("MYVALUE")) return true; – Zack Jul 15 '09 at 0:51
Yeah, I was almost embarrassed to ask the question, but at the same time was surprised that it hadn't been asked. It's one of those APIs that I just haven't been exposed to... – Mike Sickler Jul 15 '09 at 1:20
3  
Why are people still upvoting this answer (now 75)? Its 2 years old and a very simple answer. All I did was point someone to an API method. I don't think any answer is so ammazing that it deserves this nunmber of upvotes. – camickr Jun 24 '11 at 15:29
2  
@camickr Shhh... – Mike Sickler Jun 25 '11 at 3:03
feedback

9 Answers

up vote 194 down vote accepted
Arrays.asList(...).contains(...)
link|improve this answer
2  
I am somewhat curious as to the performance of this versus the searching functions in the Arrays class versus iterating over an array and using an equals() function or == for primitives. – Thomas Owens Jul 15 '09 at 0:06
1  
They would both be a linear search. – Steve Kuo Jul 15 '09 at 0:07
22  
You don't lose much, as asList() returns an ArrayList which has an array at its heart. The constructor will just change a reference so that's not much work to be done there. And contains()/indexOf() will iterate and use equals(). For primitives you should be better off coding it yourself, though. For Strings or other classes, the difference will not be noticeable. – Joey Jul 15 '09 at 0:09
2  
Odd, NetBeans claims that 'Arrays.asList(holidays)' for an 'int[] holidays' returns a 'list<int[]>', and not a 'list<int>'. It just contains one single element. Meaning the Contains doesn't work since it just has one element; the int array. – Nyerguds Nov 13 '10 at 13:15
2  
Nyerguds: indeed, this does not work for primitives. In java primitive types can't be generic. asList is declared as <T> List<T> asList(T...). When you pass an int[] into it, the compiler infers T=int[] because it can't infer T=int, because primitives can't be generic. – CromTheDestroyer Jun 14 '11 at 16:51
show 5 more comments
feedback

Just to clear the code up to start with. We have (corrected):

public static final String[] VALUES = new String[] {"AB","BC","CD","AE"};

This is a mutable static which FidnBugs will tell you is very naughty. It should be private:

private static final String[] VALUES = new String[] {"AB","BC","CD","AE"};

(Note, you can actually drop the new String[]; bit.)

So, reference arrays are bad, and in particular here we want a set:

private static final Set<String> VALUES = new HashSet<String>(Arrays.asList(
     new String[] {"AB","BC","CD","AE"}
));

(Paranoid people, such as myself, may feel more at ease if this was wrapped in Collections.unmodifiableSet - it could even be made public.)

"Given String s, is there a good way of testing whether VALUES contains s?"

VALUES.contains(s)

O(1).

link|improve this answer
1  
+1 Tom. Great stuff. – Mike Sickler Jul 15 '09 at 13:35
11  
Except it's O(N) to create the collection in the first place :) – Drew Noakes Apr 25 '11 at 6:54
3  
If it's static, it's probably going to be used quite a few times. So, the time consumed to initialise the set has good chances of being quite small compared to the cost of a lot of linear searches. – Xr. Oct 12 '11 at 19:39
Creating then the collection is going to be dominated by code loading time (which is technically O(n) but practically constant). – Tom Hawtin - tackline Mar 7 at 13:23
feedback

If the array is not sorted, you will have to iterate over everything and make a call to equals on each.

If the array is sorted, you can do a binary search, there's one in the Arrays class.

Generally speaking, if you are going to do a lot of membership checks, you may want to store everything in a Set, not in an array.

link|improve this answer
Also, like I said in my answer, if you use the Arrays class, you can sort the array then perform the binary search on the newly sorted array. – Thomas Owens Jul 15 '09 at 0:10
1  
@Thomas: I agree. Or you can just add everything into a TreeSet; same complexity. I would use the Arrays if it doesn't change (maybe save a little bit of memory locality since the references are located contiguously though the strings aren't). I would use the set if this would change over time. – Uri Jul 15 '09 at 0:14
feedback

For what its worth I ran a test comparing the 3 suggestions for speed. I generated random integers, converted them to a String and added them to an array. I then searched for the highest possible number/string, which would be a worst case scenario for the asList().contains().

When using a 10K array size the results where:

Sort & Search   : 15
Binary Search   : 0
asList.contains : 0

When using a 100K array the results where:

Sort & Search   : 156
Binary Search   : 0
asList.contains : 32

So if the array is created in sorted order the binary search is the fastest, otherwise the asList().contains would be the way to go. If you have many searches, then it may be worthwhile to sort the array so you can use the binary search. It all depends on your application.

I would think those are the results most people would expect. Here is the test code:

import java.util.*;

public class Test
{
    public static void main(String args[])
    {
    	long start = 0;
    	int size = 100000;
    	String[] strings = new String[size];
    	Random random = new Random();


    	for (int i = 0; i < size; i++)
    		strings[i] = "" + random.nextInt( size );

    	start = System.currentTimeMillis();
    	Arrays.sort(strings);
    	System.out.println(Arrays.binarySearch(strings, "" + (size - 1) ));
    	System.out.println("Sort & Search : " + (System.currentTimeMillis() - start));

    	start = System.currentTimeMillis();
    	System.out.println(Arrays.binarySearch(strings, "" + (size - 1) ));
    	System.out.println("Search        : " + (System.currentTimeMillis() - start));

    	start = System.currentTimeMillis();
    	System.out.println(Arrays.asList(strings).contains( "" + (size - 1) ));
    	System.out.println("Contains      : " + (System.currentTimeMillis() - start));
    }
}
link|improve this answer
6  
You aren't used to microbenchmarks, are you? – Tom Hawtin - tackline Jul 15 '09 at 1:59
feedback

You can use ArrayUtils.contains from Apache Commons Lang

public static boolean contains(Object[] array, Object objectToFind)

link|improve this answer
feedback

You can use the Arrays class to perform a binary search for the value. If your array is not sorted, you will have to use the sort functions in the same class to sort the array, then search through it.

link|improve this answer
You can use the sort functions in the same class to accomplish that...I should add that to my answer. – Thomas Owens Jul 15 '09 at 0:06
1  
Will probably cost more than the asList().contains() approach, then, I think. Unless you need to do that check very often (but if it's just a static list of values that can be sorted to begin with, to be fair). – Joey Jul 15 '09 at 0:10
True. There are a lot of variables as to which would be the most effective. It's good to have options though. – Thomas Owens Jul 15 '09 at 0:13
feedback

Instead of using the quick array initialsation syntax to you could just initialise it as a List straight away in a similar manner using the Arrays.asList method e.g.:

public static final List<String> STRINGS= Arrays.asList("firstString", "secondString" ...., "lastString");

Then you can do (like above): STRINGS.contains("the string you want to find");

link|improve this answer
feedback

Actually , if you use HashSet as Tom Hawtin proposed you don`t need to worry about sorting and your speed is the same as with Binary Search on a presorted array, probably even faster.

It all depends on how your code is set up, obviously, but from where I stand, the order would be:

On a UNsorted array

HasSet

asList

sort & Binary

On a sorted array

HasSet

Binary

asList

So either way, HasSet ftw

link|improve this answer
feedback

ObStupidAnswer (but I think there's a lesson in here somewhere):

enum Values {
    AB, BC, CD, AE
}

try {
    Values.valueOf(s);
    return true;
} catch (IllegalArgumentException exc) {
    return false;
}
link|improve this answer
Exception throwing is apparently heavy but this would be a novel way of testing a value if it works. The downside is that the enum has to be defined beforehand. – James Poulson Jun 2 '11 at 18:20
feedback

Your Answer

 
or
required, but never shown

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