vote up 1 vote down star
1

What would be the best way to look in a string[] to see if it contains a element. This was my first shot at it. But perhaps there is something that I am overlooking. The arraysize wil be no larger than 200 elements

 bool isStringInArray(string[] strArray, string key)
      {
        for (int i = 0; i <= strArray.Length - 1; i++)
            if (strArray[i].ToString() == key)
                return true;
        return false;
    }
flag

7 Answers

vote up 13 vote down check

Just use the already built in Contains() method:

string[] array = { "foo", "bar" };
if (array.Contains("foo")) {
    //...
}
link|flag
For some reason when I first looked for the method I couldn't find it...thanks. – Brad Feb 1 at 17:28
@Brad: That's because its an extension method coming from Enumerable. – AnthonyWJones Feb 1 at 17:39
1  
You have to include System.Linq for this to work. – Dave Markle Feb 1 at 18:21
vote up 2 vote down

You're simply after the Array.Exists function (or the Contains extension method if you're using .NET 3.5, which is slightly more convenient).

link|flag
vote up 2 vote down

Is the array sorted? If so you could do a binary search. Here is the .NET implementation as well. If the array is sorted then a binary search will improve performance over any iterative solution.

link|flag
Well, O(N) to O(log n) ;-p – Marc Gravell Feb 1 at 21:10
I removed my hyperbolic "exponentially" :) – Andrew Hare Feb 1 at 23:05
vote up 0 vote down

You can also use LINQ to iterate over the array. or you can use the Find method which takes a delegate to search for it. However I think the find method is a bit more expensive then just looping through.

link|flag
The Find method will be algorithmically identical to the "looping-through" method. Any extra expense will be some object creation and maybe a layer or two of indirection but, if you're worrying about optimizing those out at the expense of readability, you're worrying about the wrong things. – John Price Feb 1 at 17:54
vote up 0 vote down

Linq (for s&g's):

var test = "This is the string I'm looking for";
var found = strArray.Any(x=>x == test);

or, depending on requirements

var found = strArray.Any(
    x=>x.Equals(test, StringComparison.OrdinalIgnoreCase));
link|flag
vote up 0 vote down

Arrays are, in general, a poor data structure to use if you want to ask if a particular object is in the collection or not.

If you'll be running this search frequently, it might be worth it to use a Dictionary<string, something> rather than an array. Lookups in a Dictionary are O(1) (constant-time), while searching through the array is O(N) (takes time proportional to the length of the array).

Even if the array is only 200 items at most, if you do a lot of these searches, the Dictionary will likely be faster.

link|flag
binary-search is O(log n); dictionary subtends to O(1) - but there is a lot of overhead; for small-to-mid-size, linear search or binary search can out-perform. – Marc Gravell Feb 1 at 21:11
vote up -1 vote down

This is quicker than iterating through the array manually:

static bool isStringInArray(string[] strArray, string key)
    {

        if (strArray.Contains(key))
            return true;
        return false;
    }
link|flag
And that's faster how? – senfo Feb 1 at 18:01
using LINQ is faster than iterating through the string as was done in the example. strArray.Contains(key) is all that is really necessary – Chris Ballance Feb 1 at 18:09
Behind the scenes, strArray.Contains(key) is just going to loop through the array anyway... there's no magic involved that gets you out of doing an O(n) search. – John Price Feb 1 at 23:14

Your Answer

Get an OpenID
or

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