In C, how to remove all characters present in one array from another array?
|
feedback
|
|
Sounds like homework but here's a solution. Make an array of 256 entries, like I forgot and left out that you must first | |||||||||||||||
feedback
|
|
If they are numbers: You can not "remove" them, but you can either set them to The brute force way is to use two nested if they are 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 ( | |||||||||||||
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. | |||
|
feedback
|
See other answers for the | ||||
|
feedback
|
0terminated strings? Is this homework? – Apalala Mar 4 '11 at 3:54