I have a list which contains more than 75 thousand object. To search item from list currently I am using following code.
from nd in this.m_ListNodes
where
nd.Label == SearchValue.ToString()
select
nd;
Is this code is efficient?
|
I have a list which contains more than 75 thousand object. To search item from list currently I am using following code.
Is this code is efficient? |
|||||||
|
|
How often do you need to search the same list? If you're only searching once, you might as well do a straight linear search - although you can make your current code slightly more efficient by calling If you're going to perform this search on the same list multiple times, you should either build a
or
Use a dictionary if there's exactly one entry per label; use a lookup if there may be multiple matches. To use these, for a lookup:
or for a dictionary:
|
|||||
|
|
No. It would be better if you used a Dictionary or a HashSet with the label as the key. In your case a Dictionary is the better choice:
|
|||||||||||
|