- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一个程序,给出由用户输入创建的两个数组的并集、交集和差值。因此,如果用户希望第一个数组的大小为 4,元素为 [1 2 3 4],第二个数组的大小为 5,元素为 [3 4 5 6 7],则输出应为;集合 A 和集合 B 的并集为: 1 2 3 4 5 6 7 集合 A 和集合 B 的交集为: 3 4 A组和B组的差异是: 1 2现在已经获得了交集,但是差异不起作用。差异被打印为第一个数组的所有元素。我不知道从哪里开始工会。这是我的代码:
package rhc91310a13sets;
import java.util.*;
public class rhc91310a13sets {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int[] setA = null;
int[] setB = null;
System.out.print("Enter size for set A (must be less than or equal to 20): ");
setA = new int[sc.nextInt()];
System.out.print("Enter elements for set A between 1-20: ");
for (int i = 0; i < setA.length; i++) {
setA[i] = sc.nextInt();
}
System.out.print('\n');
System.out.print("Enter size for set B (must be less than or equal to 20): ");
setB = new int[sc.nextInt()];
System.out.print("Enter elements for set B between 1-20: ");
for (int i = 0; i < setB.length; i++) {
setB[i] = sc.nextInt();
}
System.out.print('\n');
System.out.print("The union of sets A and B are: ");
for(int i = 0; i < setA.length; i++) {
for(int j = 0; j < setB.length; j++) {
}
}
System.out.print('\n');
System.out.print("The intersection of sets A and B are: ");
for (int i = 0; i < setA.length; i++) {
for (int j = 0; j < setB.length; j++) {
if (setA[i] == setB[j]) {
System.out.print(setA[i] + " ");
}
}
}
System.out.print('\n');
System.out.print("The difference of sets A and B are: ");
for (int i = 0; i < setA.length; i++) {
for (int j = 0; j < setB.length; j++) {
if (!(setA[i] == setB[j]))
System.out.print(setA[i] + " ");
}
}
}
}
最佳答案
你意想不到的结果
The difference of sets A and B are: 1 1 1 1 1 2 2 2 2 2 3 3 3 3 3 4 4 4 4 4
你的逻辑有一些问题。你通过从setA中取出一个元素来检查setA
和set B
之间的差异,并检查它是否与setB的元素不同,但问题是。例如,您从 setA 中取出 1
并检查它是否与 3 ,4, 5, 6 ,7
不同。因此它与所有 5 个元素不同,因此 1 将打印 5 times.最糟糕的问题发生在当你从 setA 中取出 3 并检查 setB 时。3 与 setB 中期望第一个元素不同的所有元素都不同。所以 3
将打印 4 次
但是等等,这给出了这样的想法:如果 setA 的一个元素打印少于 5 次
,这意味着它不是不同的元素。你要做的就是检查所有 5 个元素是否不同,而不是单个,我放入 count 变量并检查它是否与 setB 不同 5 倍。但我认为简单的方法是使用 HashSet
int[] setA = {1,2,3,4};
int[] setB = {3 ,4, 5, 6 ,7};
int count=0;
System.out.print("The difference of sets A and B are: \n");
for (int i = 0; i < setA.length; i++) {
count=0;
for (int j = 0; j < setB.length ; j++) {
if ((setA[i] != setB[j])){
count++;
}
if(count==setB.length){
System.out.println(setA[i]);
}
}
}
输出>>
The difference of sets A and B are:
1
2
***更新***
如果你想将这2个元素的不同元素放入一个数组中,最好的方法是 arraylist 。你可以像下面这样做
int[] setA = {1, 2, 3, 4};
int[] setB = {3, 4, 5, 6, 7};
int count = 0;
ArrayList<Integer> arl = new ArrayList<Integer>();
System.out.print("The difference of sets A and B are: \n");
for (int i = 0; i < setA.length; i++) {
count = 0;
for (int j = 0; j < setB.length; j++) {
if ((setA[i] != setB[j])) {
count++;
}
if (count == setB.length) {
// System.out.println(setA[i]);
arl.add(i);
}
}
}
System.out.println(arl);
输出>>
The difference of sets A and B are:
1
2
[0, 1]
查找联合值。您可以使用 HashSet。
ArrayList list = new ArrayList();
for(int i=0;i<setA.length;i++){
list.add(setA[i]);
}
for(int i=0;i<setB.length;i++){
list.add(setB[i]);
}
HashSet h = new HashSet();
h.addAll(list);
list.clear();
list .addAll(h);
System.out.println(list);
关于java - 查找两个一维数组的并集、交集和差集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26080769/
我有一个现有站点,其数据库设计不正确并且包含大量记录,因此我们无法更改数据库结构。 本期数据库主要包含用户、问题、选项、答案4个表。有一组标准的问题和选项,但对于每个用户,每组问题和选项在答案表中都有
有没有办法找出两个 CGPathRef 是否相交。就我而言,所有 CGPath 都有 closePath。 例如,我有两条路径。一条路径是旋转一定角度的矩形,另一条路径是弯曲路径。两条路径的原点会经常
我目前正在使用 JavaFX 研究不同形状之间的边界相交。我想检测两个多边形在它们的点上而不是在它们的边界上的碰撞(即 2 个多边形)。 请参见图 1:不需要的行为和图 2:需要的行为。 是否有任何现
在我的three.js 场景中,我有一些立方体。我想为用户提供用鼠标选择框的可能性。 这是重要的代码(我使用 Three.js 版本 69。): function init() { [...]
我有一个问题。我想将四边形与四边形相交。 int main(){ typedef boost::geometry::model::point_xy TBoostPoint; typedef b
在 MongoDB 中我们找到了交集的方法,但我们也想实现日期范围排除。让我解释一下。 我们有每个支持团队的每日轮值表。每个支持团队可以每 15 分钟预订一次,持续 5-25 分钟(大约)。每个团队有
目录 1、列表求并集 1. union_by 2、列表求交集 1. intersection_by
我有以下查询: select id from t1 intersect select id from t2 intersect select id from t3 id 在某些表中可能不是唯一的,所以
需要完成此实现才能使用 UseSet 类。不确定我所实现的是否100%正确。 但是我需要 Union 和 SysDiff 方面的帮助。 public class Set { private Ar
我的程序打印主构造函数,但不返回 3 个底部函数,而是返回其编译结果。我哪里出错了? import java.util.*; public class Main { public static v
我正在尝试找到两个不同列表列表的交集。换句话说,找出 list1 中的所有列表是否与列表 2 中的任何列表相交。 列表1: [[1,4],[1,6],[6,8],[8,10]] 列表2: [[],
我正在尝试从 2 个已知 BST 的交集创建一个新的 BST。我在第二种情况下的 intersect2 方法中收到 NullPointerException,位于“cur3.item.set_acco
这个问题已经有答案了: self referential struct definition? (9 个回答) 已关闭 7 年前。 我有一个脚本 a.h #include b.h type
我在 user_profile 表上运行搜索,其中包含单个索引和复合索引: SELECT ••• FROM user_profile up JOIN auth_user
我正在尝试为(公寓)列表创建过滤器,通过 apartsments_features 表与 apartment features 建立多对多关系。 我只想包括具有所有某些功能(在表格上标记为"is")的
我想从两个给定的嵌套列表中创建一个新的嵌套列表(每个列表中都有唯一的项目),以便新的嵌套列表是两个列表的最大公共(public)交集。 一个例子希望能帮助阐明我的问题: old1 = [[1,
我在 Django 中有两个模型,我不确定如何编写它们(是否有一个抽象模型并继承等等......或者有两个不同的模型)但通常我有两种类型的对象 A 和 B。 A 和 B 完全相同,因为它们只是项目。它
我有一个像这样的数组 arrays = [ ['a', 'b', 'c', 'd'], ['a', 'b', 'c', 'g'], ['a',
我正在通过向 Mario Zechner 的开源跳线游戏添加更多功能来学习 libgdx。我正在尝试制作一些带有角度的平台并遇到旋转矩形的碰撞检测问题。 我关注了this解决方案并使用多边形和我的矩形
我有一个包含对象的数组: let data = [[{a:0}, {b:1}], [{a:1}, {b:1}]] 现在我想制作一个 lodash intersection这两个数组,返回 [{b:1}
我是一名优秀的程序员,十分优秀!