This could be terribly trivial, but I'm having trouble finding an answer that executes in less than n^2 time. Let's say I have two string arrays and I want to know which strings exist in both arrays. How would I do that, efficiently, in VB.NET or is there a way to do this other than a double loop?
|
2
|
|||||
|
|
|
If you sort both arrays, you can then walk through them each once to find all the matching strings. Pseudo-code:
Then you've reduced it to the time it takes to do the sorting. |
||
|
|
|
|
If one of the arrays is sorted you can do a binary search on it in the inner loop, this will decrease the time to |
||
|
|
|
|
Sort both lists. Then you can know with certainty that if the next entry in list A is 'cobble' and the next entry in list B is 'definite', then 'cobble' is not in list B. Simply advance the pointer/counter on whichever list has the lower ranked result and ascend the rankings. For example: List 1: D,B,M,A,I sorted: List 1: A,B,D,I,M A vs A --> match, store A, advance both 2 list sorts O(n log(n)), plus O(n) comparisons makes this O(n(log(n) + 1)). |
|||
|
|
|
|
The simple way (assuming no .NET 3.5) is to dump the strings from one array in a hashtable, and then loop through the other array checking against the hashtable. That should be much faster than an n^2 search. |
||
|
