开发者

C# Check Object Array For Duplicates

I have an array of Customer[] objects, and I want to use it to create a Dictionary<Customer, string>. Wha开发者_运维百科t is the easiest way to examine the array for duplicates before I load the Dictionary? I want to avoid "ArgumentException: An item with the same key has already been added". Thanks.


Just call Dictionary.ContainsKey(key) before you add your Customers.


You could use LINQ to do both:

Customer[] customers; // initialized somehow...
var customerDictionary = customers.Distinct().ToDictionary( cust => cust.SomeKey );

If you will build the dictionary in a less straightforward fashion, you can just use the Distinct() extension method to get a unique array like so:

Customer[] uniqueCustomers = customers.Distinct().ToArray();

If you need to be aware of potential duplicates, you could use GroupBy( c => c ) first to identify which items have duplicates.

Finally, if you don't want to use LINQ, you can build the dictionary on the fly and use a precondition check when adding each item:

var customerDictionary = new Dictionary<Customer,string>();
foreach( var cust in customers )
{
    if( !customerDictionary.ContainsKey(cust) )
        customerDictionary.Add( cust, cust.SomeKey ); 
}


The most efficient way of doing that, from BOTH PERFORMANCE and CODE points of view, is this:

dict[key] = value

This way the exception mentioned by you will never get thrown, and the key lookup will not happen twice


How big is the array? and how likely is it that there will be duplicates?

Checking each element of the array against all the others is quite a expensive operation.

It would be quicker to call Dictionary.ContainsKey(key) before adding each item.

NOTE: If duplicates are rare then you could use exception handling, but that's bad programming practice.


What is your definition of duplicate in this case?

If its simply the same object instance (the same pointer) then that's simple, you can use any of the methods in the other answers given here.

Sometimes though the concept of equality is not so straight forward, is a different object instance with the same data equal? In that case you probably want an implementation of an IEqualityComparer to help you.


Why not this??

Customers.Distinct.ToDictionary(o=>o, GenerateString(o));
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜