Java程序查找两个数组的交集

For example we have two sorted arrays a1[]={2,3,5,11} and a2[]={4,5,7,9,11} then intersection of a1 and a2 will be {5,11}. A Java program for finding intersection of two arrays is given below.

Also Read: Java Program to Find Union of two Arrays

Java Program to Find Intersection of two Arrays

import java.util.Scanner; //import Scanner class in our program


class demo
{
public static void main(String…s)
{
int i,j,n1,n2;
Scanner sc=new Scanner(System.in); //used to read from keyboard


System.out.print(“Enter number of elements of first array:”);
n1=sc.nextInt();
System.out.print(“Enter number of elements of second array:”);
n2=sc.nextInt();


int a1[]=new int[n1];
int a2[]=new int[n2];


System.out.print(“nEnter elements of first array in ascending order:”);
for(i=0;i<n1;++i)
a1[i]=sc.nextInt();


System.out.print(“nEnter elements of second array in ascending order:”);
for(i=0;i<n2;++i)
a2[i]=sc.nextInt();




i=j=0;
System.out.print(“nIntersection of Arrays: “);
while(i<n1&&j<n2)
{
if(a1[i]<a2[j])
i++;
else
if(a2[j]<a1[i])
j++;
else
{
System.out.print(a1[i]+” “);
i++;
j++;
}
}

}
}

For example we have two sorted arrays a1[]={2,3,5,11} and a2[]={4,5,7,9,11} then intersection of a1 and a2 will be {5,11}. A Java program for finding intersection of two arrays is given below.

Also Read: Java Program to Find Union of two Arrays

Java Program to Find Intersection of two Arrays

import java.util.Scanner; //import Scanner class in our program


class demo
{
public static void main(String…s)
{
int i,j,n1,n2;
Scanner sc=new Scanner(System.in); //used to read from keyboard


System.out.print(“Enter number of elements of first array:”);
n1=sc.nextInt();
System.out.print(“Enter number of elements of second array:”);
n2=sc.nextInt();


int a1[]=new int[n1];
int a2[]=new int[n2];


System.out.print(“nEnter elements of first array in ascending order:”);
for(i=0;i<n1;++i)
a1[i]=sc.nextInt();


System.out.print(“nEnter elements of second array in ascending order:”);
for(i=0;i<n2;++i)
a2[i]=sc.nextInt();




i=j=0;
System.out.print(“nIntersection of Arrays: “);
while(i<n1&&j<n2)
{
if(a1[i]<a2[j])
i++;
else
if(a2[j]<a1[i])
j++;
else
{
System.out.print(a1[i]+” “);
i++;
j++;
}
}

}
}

翻译自: https://www.thecrazyprogrammer.com/2014/07/java-program-to-find-intersection-of-two-arrays.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值