我需要写一个循环,看看hashmap中的值是否相等,如果相等,看看它们出现了多少次。将通过扫描器输入一组数字(下面是输入示例)下面的代码将把count键和hashset的值放入hashmap中。
public static void main(String[] args) {
System.out.println("Type in your numbers followed by spaces and press enter");
System.out.println("After every set entered type in any letter to enter more sets");
System.out.println("Or enter * to finish");
HashMap<Integer, HashSet<Integer>> hset = new HashMap<>();
Scanner sc = new Scanner(System.in);
int count = 1;
HashSet<Integer> list = new HashSet<>();
while(sc.hasNextLine()) {
while(sc.hasNextInt()) {
list.add(sc.nextInt());
}
hset.put(count, new HashSet<>(list));
count++;
list.clear();
sc.nextLine();
if(sc.nextLine().equals("*")) {
System.out.println("working");
break;
}
}
for(int i=0; i<count; i++){
//some code goes here
//if(hset.get(x) == hset.get(j)) or something along these lines
}
}
//Sample Scanner input
1 2 3 4 5
10 9 8 7
5 4 3 2 1
1 1 1 1 1
1 2 3 5
1 2 3 6
6 4 2
2 4 6
4 2 6
4 6 2
6 2 4
1 3 2 4 5
15 14 13
5 3 2 1
79
7 9
//What I need the output to look like
[7, 9]=1
[1]=1
[7, 8, 9, 10]=1
[13, 14, 15]=1
[1, 2, 3, 5]=2
[1, 2, 3, 6]=1
[2, 4, 6]=5
[1, 2, 3, 4, 5]=3
[79]=1
2条答案
按热度按时间qacovj5a1#
我会这样做:
问题中的数字,更改为适合打印说明
输出
bprjcwpo2#
在列表形式的列表中提供上述输入,您可以按以下方式执行:
由于计数将发生变化,我建议使用set作为键,使用count作为值。你可以随时扭转他们以后。还要注意的是
sets
在相同的价值观下,不分先后次序地进行平等比较。只需将列表流化并转换为一个集合。DUP将自动删除。
把它们放在一个盒子里
Map<Set<Integer>, Long>
仍然可以从控制台获取输入。印刷品