In C, how to remove all characters present in one array from another array?

link|improve this question

Are you talking about 0 terminated strings? Is this homework? – Apalala Mar 4 '11 at 3:54
what do you have so far? – Anders K Mar 4 '11 at 4:01
feedback

4 Answers

up vote 4 down vote accepted

Sounds like homework but here's a solution.

Make an array of 256 entries, like char set[256]. Read the first string. For each character c set set[(unsigned char)c] to 1. Read and copy the second string. For each character c if set[c] then skip c.

I forgot and left out that you must first memset(set, 0, sizeof(set)) before setting any of its values to 1.

link|improve this answer
2  
Why did you decide to pick 256? Also shouldn't that be an array of ints, not chars? – Andrew Marshall Mar 4 '11 at 3:57
@Andrew: Standard 8-bit char. I suppose to be really picky you'd need to use preprocessor macros to determine the actual byte size. – Zan Lynx Mar 4 '11 at 4:00
@Andrew: I use char to save the space. It should actually be a bit vector but that's too much hassle and the macros are nasty. – Zan Lynx Mar 4 '11 at 4:01
128 for ASCII should be sufficient in most all cases (not that it's that much space anyway). – Andrew Marshall Mar 4 '11 at 4:02
1  
@Andrew: No, that would result in 8. Much too small. sizeof(char) will always return 1, its size in bytes. However, C is free to redefine the size of a byte. – Zan Lynx Mar 4 '11 at 4:11
show 7 more comments
feedback

If they are numbers:

You can not "remove" them, but you can either set them to 0 (or any other value that can represent removal in your case) or create a new array which contains the numbers which do not belong in the subset of the two arrays.

The brute force way is to use two nested for loops

if they are chars:

you may "remove" them by "shifting"-"swapping"-"moving" all characters which do not belong in the common subset in the left, and then set the null terminator in the right place. (as long you do not mess with string literals (char * p = "lala") this is fine). This will pretty much make the chars who are common to disappear.

link|improve this answer
They can be removed if the arrays are for C strings. – Apalala Mar 4 '11 at 3:55
@apalala, you mean with shifting ? You are correct. did not read the question full and I assumed they were numbers. – Muggen Mar 4 '11 at 3:56
Is it possible to have some better way rather than using brute force (n*m times where n is the length of array 1 & m is the length of array 2) – user395881 Mar 4 '11 at 3:56
@user, look at Zan's answer. – Muggen Mar 4 '11 at 3:57
1  
Shifting, yes. – Apalala Mar 4 '11 at 4:11
feedback

Assume you want to remove the chars in a0 that exist in a1. First create a boolean array where each index is a character. ex. x['c'] would be true if 'c' is found in a1. Then loop through a0, checking the x array to see if a char should be kept or tossed. You can create a new array with elements removed if needed. This should be a O(n) operation.

link|improve this answer
feedback
void remove_repeated(char* s, char* another)
{
    // ... preparation with another... see other answers
    for (pos = p = s; *p != 0; p++)
    {
        if (!macro_is_repeated(*p))
           *pos++ = *p;
    }
    *pos = 0;
}

See other answers for the is_repeated part.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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