I have to implements a function that takes a string as an input and finds the non-duplicate character from this string.
So an an example is if I pass string str = "DHCD" it will return "DHC" or str2 = "KLKLHHMO" it will return "KLHMO"
|
1
|
|||||||||
|
|
|
A Linq approach:
|
||
|
|
|
|
For arbitrary length strings of byte-sized characters (not for wide characters or other encodings), I would use a lookup table, one bit per character (32 bytes for a 256-bit table). Loop through your string, only output characters that don't have their bits turned on, then turn the bit on for that character.
I am not good with C#, so I don't know the right way to use a bitfield instead of a byte array. If you know that your strings are going to be very short, then other approaches would offer better memory usage and/or speed. |
||||||
|
|
|
It will do the job
I should note this is criminally inefficient. I think I was delirious on first revision. |
||||
|
|
|
It sounds like homework to me, so I'm just going to describe at a high level.
|
||
|
|
|
|
I think this article on .NET perls covers it very well. -John |
||
|
|