Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given two character arrays a[] and b[], remove from b[] all occurrences of all characters that occur in array a[]. You need to do this in-place i.e. without using an extra array of characters. E.g.:

Input: a[] = [‘G’, ‘O’]          
Input  b[] = [‘G’, ’O’, ’O’, ’G’, ’L’, ’E’] 

Output: b[] = [‘L’, ‘E’]

Code :

public class ReplaceCharacterArray{         
       public static void main(String args[]){        
          char a[] = [‘G’, ‘O’]         
          char b[] = [‘G’, ’O’, ’O’, ’G’, ’L’, ’E’]     

         //to replace all the occurences of all the characters of     
         //a[] array in b[] array we have below logic.     

          for(int i=0;i<a.length;i++){     
             for(int j=0;j<b.length;j++){     
                  if(b[j] == a[i]){     
                    //im stuck here how to proceed      
             }     
          }    
share|improve this question
3  
homework?...... – Bozho Dec 1 '10 at 11:21
im really stuck with this for a long time.please help me – Deepak Dec 1 '10 at 11:22
Please format your code properly using the 1010110 button – aioobe Dec 1 '10 at 11:51
@aioobe: could you please help me now to refine this code. – Deepak Dec 1 '10 at 12:00

closed as not a real question by Raedwald, Nambari, Eitan T, Ben D, Ismael Abreu Sep 29 '12 at 1:15

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

You can't remove elements "in place" in Java arrays. They have fixed length. That is, in your example you'll have to return a new array, since you can't change the length of the b array.

Here are some pointers for you:

  • Maintain a write-index for the b array (left of this index, you have only characters not present in a).
  • Iterate through the b array
  • While the current character is contained in a, step forward
  • Swap current character (not contained in a) with the character at the write-index
  • Increment the write-index, and continue from there.

Use for instance Arrays.copyOfRange to return the part of the array to the left of the write-index.


Regarding your update:

  • Arrays are not written using [ and ] and characters are not written using , change them to {, } and '.
  • Having a helper method with the signature boolean arrayContains(char[] arr, char c) will make it easier to write the algorithm
  • If you follow my approach, you will also benefit from having a helper method void swap(char[] arr, int index1, int index2).
share|improve this answer
Aioobe,question is same as asked – Deepak Dec 1 '10 at 11:30
Updated my answer. The "least wrong" approach is probably to (when you're done) return a sub-sequence of the cleaned up array. – aioobe Dec 1 '10 at 11:32
You need to do this in-place i.e. without using an extra array of characters. – Deepak Dec 1 '10 at 11:32
Right... that's what I suggest in my answer. Keep swapping the elements in the b array so that you collect the "bad characters" in the end. Then finally return the left part of the array. – aioobe Dec 1 '10 at 11:33
im not getting it....can post the code please – Deepak Dec 1 '10 at 11:35
show 15 more comments

You can go about like this

Iterate the loop a, that is 2 times and In each iteration, perform the copare that value exists in the b[] array, if yes delete that. Continue that until you iterate the array b[] completely.

So that in the end you will have b[] array only with the other elements which is not in the array a[].

I hope this will help you to complete your work.

share|improve this answer
harui can you please post the code.... – Deepak Dec 1 '10 at 11:33
1  
@Deepak, it's you who supposed to be posting code for us to help you (not the other way around). – Buhake Sindi Dec 1 '10 at 11:36
Elite i have written the partial code,can you help me in refining it further. – Deepak Dec 1 '10 at 11:39
plzzzz i have posted my partial code.please refine it – Deepak Dec 1 '10 at 11:42
@Deepak, can you refine your question with your code? I can't read code here... – Buhake Sindi Dec 1 '10 at 11:49
show 1 more comment

I guess since this is a homework 3rd party library's may not be allowed.Any way i'll just post a code using Guava:

 char[] removeChars(char a[],char b[])
 {
    return  CharMatcher.anyOf(new String(b)).removeFrom(new String(a)).toCharArray();    
 }

UPDATE:(check this sample,it's one way to solve)

import java.util.*;
import java.lang.*;

class CharReplace{
public static void main(String[] args)
{
char a[] = "GOOGLE".toCharArray();
char b[] = "GO".toCharArray();
BitSet charToRemove=new BitSet();
for(char c:b)
 charToRemove.set(c);
StringBuilder str=new StringBuilder();
for(char c:a)
 if(!charToRemove.get(c))
  str.append(c);
b=str.toString().toCharArray();
System.out.println(Arrays.toString(b));

}

}
share|improve this answer
And you introduced Guava, that's a straight fail! – Buhake Sindi Dec 1 '10 at 12:20
@Elite could you please post the source code....im really helpless i dont know what contents i have to write for this code. – Deepak Dec 1 '10 at 13:36

You have mistakes in your code,

  • Arrays don't start and end with [ and ] respectively. They start and end with { and } respectively.
  • Characters are enclosed with ' only.
  • You will have to keep the state of your iterations (in my case I kept the indexing state and the state of to know whether the character in b exists in a).
  • Have a remove(char[] array, char characterToRemove) and pass the b[] and it's respective character to remove to complete the flow.

Update without using String, StringBuffer, or any libraries, this is what works....

Warning the array b never gets reduced (it gets appended with NULL character). That I will leave it for you to crack.

/**
 * @author The Elite Gentleman
 * 
 */
public class ReplaceCharacterArray {
    public static boolean containsCharacter(char character, char[] array) {
        for (int i = 0; i < array.length; i++) {
            if (array[i] == character) {
                return true;
            }
        }

        return false;
    }

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        char a[] = {'G', 'O'};
        char b[] = {'G', 'O', 'O', 'G', 'L', 'E'};
        //to replace all the occurences of all the characters of a[] array in b[] array we have below logic.

        int index = 0;
        int count = 0;
        while (index < b.length) {
            while (ReplaceCharacterArray.containsCharacter(b[index], a)) {
                System.arraycopy(b, index + 1, b, 0, b.length - index - 1);
                count++;
            }

            index++;
        }

        for (int i = (b.length - count); i < b.length; i++) {
            b[i]= '\0';
        }

        for (int i = 0; i < b.length; i++) {
            System.out.println(b[i]);
        }
    }
}
share|improve this answer
Plese the post the java code for this atleast.Im new to data structures....please help provided will be appreciated. – Deepak Dec 1 '10 at 12:23
Elite.Plese the post the java code for this atleast.Im new to data structures....please help provided will be appreciated – Deepak Dec 1 '10 at 13:20
Could you please post the entire JAVA CODE – Deepak Dec 1 '10 at 16:16
Thanks Elite,i will analyse and come back with few more clarifications. – Deepak Dec 1 '10 at 17:29
@@Elite NULL gets appended as told by you,hmmmm there is a bug in this program.The NULL bug,how do i crack that...can u suggest some hints\suggestions\advice me on lines of java – Deepak Dec 6 '10 at 14:25
show 7 more comments

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