I have been working with a string[] array in C# that gets returned from a function call. I was wondering what the best way to remove duplicates from this array would be? I could possibly cast to a Generic collection, but I was wondering if there was a better way to do it, possibly by using a temp array?
|
|
|||||||||||
|
|
You could possibly use a LINQ query to do this:
|
|||
|
|
|
Here is the HashSet<string> approach:
If you are working in .NET Framework 3.x you could use array.Distinct(), which is a feature of LINQ. |
|||||
|
|
If you needed to sort it, then you could implement a sort that also removes duplicates. Kills two birds with one stone, then. |
|||
|
|
|
This might depend on how much you want to engineer the solution - if the array is never going to be that big and you don't care about sorting the list you might want to try something similar to the following:
|
|||
|
|
|
NOTE : NOT tested!
Might do what you need... EDIT Argh!!! beaten to it by rob by under a minute! |
|||
|
|
The following tested and working code will remove duplicates from an array. You must include the System.Collections namespace.
You could wrap this up into a function if you wanted to. |
||||
|
|
This is O(n^2), which won't matter for a short list which is going to be stuffed into a combo, but could be rapidly be a problem on a big collection. |
|||
|
|
|
Here is a O(n*n) approach that uses O(1) space.
The hash/linq approaches above are what you would generally use in real life. However in interviews they usually want to put some constraints e.g. constant space which rules out hash or no internal api - which rules out using LINQ. |
|||||
|
|
The following piece of code attempts to remove duplicates from an ArrayList though this is not an optimal solution. I was asked this question during an interview to remove duplicates through recursion, and without using a second/temp arraylist:
|
||||
|
|
|
||||
|
|
|
Add all the strings to a dictionary and get the Keys property afterwards. This will produce each unique string, but not necessarily in the same order your original input had them in. If you require the end result to have the same order as the original input, when you consider the first occurance of each string, use the following algorithm instead:
At the end, the list contains the first occurance of each unique string. Make sure you consider things like culture and such when constructing your dictionary, to make sure you handle duplicates with accented letters correctly. |
|||
|
|
|
Maybe hashset which do not store duplicate elements and silently ignore requests to add duplicates.
|
|||
|
|