Hi
I have two List's of words. I want to count the words larger than 3 characters that exists in both lists. Using C# how would you solve it ?
|
|
Hi I have two List's of words. I want to count the words larger than 3 characters that exists in both lists. Using C# how would you solve it ?
|
||
|
|
|
|
I would use
assuming |
||||||||||||||||
|
|
|
Assuming list 1 length is N and list 2 length is M: I would first filter since this is a cheap operation O(N+M) then do the intersection, A relatively expensive operation based on the current implementation. The cost of the Intersect call is complicated and is fundamentally driven by the behaviours of the hash function:
This leaves you with:
Incidentally the Enumerable.Intersect method's performance behaviour may change considerably depending on the order of the arguments. In most cases making the smaller of the two the first argument will produce faster, more memory efficient code and the first argument is used to construct a backing temporary (hash based) Set. This of course is coding to a (hidden) implementation detail so should be considered only if this is shown to be an issue after performance analysis and highlighted as a micro optimization if so. The second filter on list2 is fundamentally unecessary for correctness (since the Intersects will remove such entries anyway) If it quite possible that the following is faster
However filtering by length is very cheap for long strings compared to calculating their hash codes. The better one will only be found through benchmarking with inputs appropriate to your usage. |
||||||||||||||
|
|
|
|
||
|
|