check if two arrays are equal or not hashing code example
Example 1: example to check two integer array are equal in java?
import java.util.Arrays;
public class JavaArrayConceptsConitnue
{
public static void main(String[] args)
{
int[] x = {10,12,20,30,25};
int[] subx = new int[]{10,12,20,30,26};
if(Arrays.equals(x, subx) == true)
{
System.out.println("Both the arrays are equal");
}
else
{
System.out.println("Arrays are not equal");
}
}
}
Example 2: equal elements in two arrays in c++
bool equalelementsintwoarrays(int A[], int B[], int N) {
sort(A, A+N);
sort(B, B+N);
int i = 0, j = 0;
while (i < N && j < N) {
if (A[i] == B[j]) return true;
else if (A[i] > B[j]) j++;
else i++;
}
return false;
}