vote up 0 vote down star
1

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"

flag
The title is misnamed - you want to remove duplicate characters from the string. – Stephen Doyle Feb 26 at 1:47
Could you post what you have tried so far? – SquareCog Feb 26 at 1:47
LINQ solution should be fun. – DK Feb 26 at 1:51
I afraid LINQ maybe slow – Red Hot Feb 26 at 1:57

5 Answers

vote up 3 vote down check

A Linq approach:

public static string RemoveDuplicates(string input)
{
    return new string(input.ToCharArray().Distinct().ToArray());
}
link|flag
vote up 3 vote down

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.

string removedupes(string s)
{
    string t;
    byte[] found = new byte[256];
    foreach(char c in s)
    {
        if(!found[c]) {
            t.Append(c);
            found[c]=1;
        }
    }
    return t;
}

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.

link|flag
I think this will be significantly faster than Quintin Robinson's approach, but will use significantly more memory for short strings. – Sparr Feb 26 at 1:54
But significantly less memory for medium or long strings, if a bit array is used. – Sparr Feb 26 at 3:03
Your heart is in the right place, but your logic is a bit off. It should be if(found[c]){t+=c; found[c] = 1;} No else block needed. Your current code won't do the trick. – BFree Feb 26 at 3:22
vote up 1 vote down

It will do the job

string removedupes(string s)
{
    string newString = string.Empty;
    List<char> found = new List<char>();
    foreach(char c in s)
    {
       if(found.Contains(c))
          continue;

       newString+=c.ToString();
       found.Add(c);
    }
    return newString;
}

I should note this is criminally inefficient.

I think I was delirious on first revision.

link|flag
am I guessing correctly that you intentionally left the inefficiencies as an exercise to the reader, or do you want suggestions on making this work faster? – SquareCog Feb 26 at 1:49
Indeed you are correct, if it is homework then the OP can filter through and create one that isn't terrible. It also serves as a baseline for understanding what is happening. I don't need suggestions on improvements, thanks though. – Quintin Robinson Feb 26 at 1:56
vote up 1 vote down

It sounds like homework to me, so I'm just going to describe at a high level.

  • Loop over the string, examining each character
  • Check if you've seen the character before
    • if you have, remove it from the string
    • if you haven't, note that you've now seen that character
link|flag
vote up 0 vote down

I think this article on .NET perls covers it very well.

-John

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.