I am getting back a "string[]" from a 3rd party library. I want to do a contains on it. what is the most efficient way of doing this?
|
1
|
|
|
|
|
|
Array.IndexOf:
Or just use LINQ:
LINQ should be "fast enough" for most purposes. |
||
|
|
|
|
I'm fairly certain that a
|
||
|
|
|
|
Unless you know the String array is sorted by a particular order the most efficient thing you can do is linear algorithm (i.e. compare each string in the array until you find a match or the end of the array. If the array is sorted a binary search is much faster. Another way to optimize the algorithm (although the complexity is not reduced) is to vectorize the string comparisons. |
||
|
|
|
|
If you are only checking a single time, use |
||
|
|
|
If you're searching once or twice, use a linear search or IndexOf. If you're searching a few times, put the strings into a HashSet. If you're searching zillions of times in a time-critical fashion, use a HashSet and manage its bucket count yourself. |
||
|
|
|
|
You can use the IEnumerable.Foreach Custom Extension
Hope this help's. |
||
|
|
