以下是我的代码:
#include <stdio.h>
void arrays()
{
int i,n,j;
printf("Enter the size of the arrays:\n");
scanf("%d",&n);
int a1[n];
int a2[n];
int intersection[2*n], unions[n];
printf("Enter elements of the first array:\n");
for (i = 0; i < n; i++)
{
scanf("%d",&a1[i]);
}
printf("Enter elements of the second array:\n");
for (j = 0; j < n; j++)
{
scanf("%d",&a2[j]);
}
int indexs = -1, indexu = -1;
for (i = 0; i < n; i++)
{
for (j = 0; j < n; j++)
{
unions[++indexu] = a1[j];
}
}
for (i = 0; i < n; i++)
{
for (j = 0; j < n; j++)
{
if(a1[i] == a2[j])
{
intersection[++indexs] = a2[j];
}
else
{
unions[++indexu] = a2[j];
}
}
}
printf("Intersection:\n");
printf("Union:\n");
for(i = 0; i < indexs; i++)
printf("%d",intersection[i]);
for (j = 0; j < indexu; j++)
printf("%d" ,unions[j]);
}
现在,我很难找到联合和交叉点。我正在尝试修复我的循环,但我找不到问题出在哪里我这样做的方法是首先将第一个数组与第二个数组进行比较。由于联合意味着两个数组中的所有元素。然后第二个是找到重复的号码会先去路口。或者如果没有存储在联合中的元素。它也将进入联合数组。任何人都可以帮忙吗?谢谢