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?
|
|
|||||||||||||||||||||
|
|
Just to clear the code up to start with. We have (corrected):
This is a mutable static which FidnBugs will tell you is very naughty. It should be private:
(Note, you can actually drop the So, reference arrays are bad, and in particular here we want a set:
(Paranoid people, such as myself, may feel more at ease if this was wrapped in "Given String s, is there a good way of testing whether VALUES contains s?"
O(1). |
|||||||||||||||
|
|
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. |
|||||||
|
|
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:
|
|||||||||
|
|
I'm surprised no one suggested to just simply implement it by hand:
|
|||||||||||||||||
|
|
You can use ArrayUtils.contains from Apache Commons Lang public static boolean contains(Object[] array, Object objectToFind) |
||||
|
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.:
Then you can do (like above): |
||||
|
|
|
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. |
|||||||||
|
|
ObStupidAnswer (but I think there's a lesson in here somewhere):
|
|||
|
|
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 |
|||
|
|
|
If you have the google collections library, Tom's answer can be simplified a lot by using ImmutableSet (http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/collect/ImmutableSet.html) This really removes a lot of clutter from the initialization proposed
|
|||
|
|
|
|||
|
|