Checking if One Array is Contained in Another using Java Arrays

  • Java
  • Thread starter courtrigrad
  • Start date
  • Tags
    Arrays Java
In summary: System.out.println("ERROR: element not found in " + a + " and " + b); } //end if statement } //end for loop
  • #1
courtrigrad
1,236
2
Hello all

I am trying to write a program that checks whether one array is contained in another array. For example,

A = {1,2,3}
B= {1,2,3,4,5,6}

A is contained in B, so we print out true, otherwise we print out false.

Any advice or tips in writing this program would be greatly appreciated.

Thanks!
 
Technology news on Phys.org
  • #2
When you say "contains" do you mean simply that one array has the elements of the other? (e.g. {1, 2, 4} contains {4, 2}), or are you specifically requiring one to be a sublist of the other? (e.g. {1, 2, 3, 4} contains {1, 2, 3} but not {1, 3} or {3, 2, 1})
 
  • #3
No i mean that it can contain any of the elements:

{1, 2, 4} contains {4, 2}

This is correct

Any help would be greatly appreciated

Thanks a alot!
 
  • #4
(does {1, 2, 4} contain {4, 2, 2}?)


Well, how would you do this by hand? And I don't mean on an easy example like this -- what if you had two arrays each with hundreds of elements! How would you do such a problem by hand?
 
  • #5
Actually, let's say we have

A = {1,2,3,4} and B = {1,2,3,4,5}

Then B contains A. In order for B to contain A all of the elements of A have to be in B in the exact same order.
 
  • #6
Same question: suppose the arrays were hundreds long. How would you do it by hand?
 
  • #7
wouldnt you check whether the first n-1 elements of each array match each other?
 
  • #8
Well, does {1, 2, 3, ..., 1000} contain {1, 2, 3}? What about {10, 11, 12}?
 
  • #9
yes, so would you loop through each array, and see whether an elements match. How would you do this?
 
  • #10
You first figure out how to write clear, precise algorithm. It may seem laborious, but you have to do it anyways to write your program, so you might as well do it in a language you understand better.
 
  • #11
Here is what I did:

First I need to declare the two arrays A and B.
Then I write elements (integers) in the two array A and B.
Go through all the elements of arrays A and B.
If successive locations in the array have the same element return true. Print true.
If not return false.
Then print false.

Would this be the basic algorithm in trying to write this program?
 
  • #12
What you are trying to do is find a substring within a string. There are a couple algorithms that can accomplish this.

There is an very easy, two loop, O(mn) algorithm that can do it (where m,n are the size of your arrays).

There is a smarter algorithm that skips ahead in the loop giving you better running time.

There is a O(n) worst case algorithm that requires the use of trees.
 
  • #13
what do you mean by an O(mn) algorithm? I am just learning ( in middle school). Can you please be more specific?

Thanks
 
  • #14
courtrigrad said:
what do you mean by an O(mn) algorithm? I am just learning ( in middle school). Can you please be more specific?

Thanks

Oh, well in that case don't worry about O(n) stuff yet, unless you have at least algebra behind you.

I just realized that the problem is a little bit different than substring within a string. That is actually harder to do. Given your example, order and duplicates do not matter. In other words if { 1, 2, 3} contains {2, 3, 2, 3} ? This is quite easy to do:

for each element in B
scan to see if the element is in A

Write the code in your language of choice and I'll critique it.
 
  • #15
Okay, it seems that I'm confused on the specifics... Does order matter? If so, it's really easy. If not, it's not so easy, but still easy.

Hint, just in case you need it: Java arrays can tell you how long they are.

if you have an array a = {1,2,3,4}, you can see how long it is by saying a.length. You may or may not need this, depending on the specifics of the assignment.

You will definitely need at least one "for" loop, though.
 
  • #16
Code:
 boolean exsist = false; 

for(i=0;i<a.length;i++)  //loop through your a array
{
  exsist = false; //set the flag equal to false. Do it hear because we want to see if that particular element is in the 2nd array
   for(j=0;j<b.length;j++)
   {
    if( a.get(i) == b.get(j) )
    {  
      //if a is in b then set to true and break out of the loop cause no reason to finish
      exsist = true;
      break;
    }
   } //end 2nd array for
  if(exsist == false)
  {  
   if we get hear that means the previuos element wasn't in the array, so the hole thing sucks and it's a bust. so might as well break out of the loop
   break;
  }
}

if(exsist == true)
system.out.print(" all of A's elements are in array B");
 
  • #17
Looks like it would work to me.
 
  • #18
Why isn't my code working? It says variable i is not defined.

Code:
 public class check
{
    public boolean isDifferent(int [] a, int [] b)
    {

    boolean exsist = false;

    for(i=0; i < a.length; i++)  //loop through your a array
    {
    exsist = false; 
    for(j=0;j<b.length;j++)
   {
    if( a.get(i) == b.get(j) )
    {  
      
      exsist = true;
      break;
    }
  } 
  if(exsist == false)
  {  
   
   break;
  }
}

if(exsist == true)
system.out.print(" all of A's elements are in array B");
    }
}
 
  • #19
You need to define a datatype for 'i'. Decide whether it is an integer, double, float, string, etc and declare it.
 
  • #20
what about a.length? Why does it say its not defined?
 
  • #21
courtrigrad said:
what about a.length? Why does it say its not defined?

It should be a.length() (similarly, b.length()).
 
  • #22
Let me ask something. I didn't know that we can write a.get( index ). Doesn't Java allow the use of a[ index ]?
 
  • #23
ramollari said:
Let me ask something. I didn't know that we can write a.get( index ). Doesn't Java allow the use of a[ index ]?

I didn't know about being able to write a.get(index) either, but yes, Java does allow you to use a[index] if you want the value stored at that index position.
 

Related to Checking if One Array is Contained in Another using Java Arrays

1. How can I check if one array is contained in another using Java Arrays?

To check if one array is contained in another, you can use the Arrays.equals() method. This method compares the elements of two arrays and returns true if they are equal.

2. Can I use the == operator to check if one array is contained in another?

No, the == operator only checks if two arrays refer to the same object. To compare the elements of two arrays, you need to use the Arrays.equals() method.

3. What happens if the arrays have different lengths?

If the arrays have different lengths, the Arrays.equals() method will return false because the arrays are not considered equal. The lengths of the arrays need to be the same for them to be contained in each other.

4. Can I check for a partial match between two arrays?

Yes, you can use the Arrays.asList() method to convert the arrays into lists and then use the containsAll() method to check if the first list contains all the elements of the second list. This will return true if there is a partial match between the two arrays.

5. How can I check for a case-insensitive match between two arrays?

To check for a case-insensitive match, you can use the Arrays.equals() method along with the Arrays.toLowerCase() method. This will convert all the elements in both arrays to lowercase before comparing them, ensuring a case-insensitive match.

Similar threads

  • Programming and Computer Science
Replies
2
Views
713
  • Programming and Computer Science
Replies
25
Views
2K
  • Programming and Computer Science
Replies
17
Views
2K
  • Programming and Computer Science
Replies
13
Views
4K
  • Programming and Computer Science
Replies
14
Views
3K
  • Programming and Computer Science
Replies
20
Views
1K
  • Programming and Computer Science
7
Replies
235
Views
10K
  • Programming and Computer Science
Replies
4
Views
2K
  • Programming and Computer Science
Replies
7
Views
3K
  • Programming and Computer Science
Replies
2
Views
769
Back
Top