gpt4 book ai didi

java - 如何在不对数组进行排序的情况下计算数组中的整数组?

转载 作者:搜寻专家 更新时间:2023-10-31 20:08:09 27 4
gpt4 key购买 nike

我的目标是能够对数组中相同整数的组进行计数。例如,在这样的数组中,{1, 1, 1, 2, 2, 3, 1, 1} ,有 4 个组:

  • 至少 1 组:3 组
  • 至少 2 组:1 组
  • 至少尺寸 3

我在不对数组进行排序的情况下完成此操作时遇到了问题。当它被排序时,我失去了数组末尾的两个 1 组的计数,因为它被放在其他 1 组的旁边。

int result = (int) Stream.of(1, 1, 1, 2, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 5, 4, 4, 4, 6)
.collect(Collectors.groupingBy(i -> i))
.entrySet().stream()
.filter(entry -> entry.getValue().size() >= 1) // specify the size
.count()

return result;

每种尺寸的预期输出如下:

size 1 count == 8

size 2 count == 5

size 6 count == 1

size 8 count == 1

实际输出如下:

size 1 count == 6

size 2 count == 3

size 6 count == 2

size 8 count == 1

差异是数组在计数发生之前被排序的结果。有什么办法可以做到这一点?

编辑:一个组本质上是相同整数重复的任何地方,直到一个不同值的整数在它前面;因此,此代码中大小为 2 的组在索引 0 到 2(含)、索引 4 - 5(含)、索引 6 - 15(含)、索引 16 - 18(含)和索引 20 -22 (含)。由于有 5 个组的大小至少为 2,因此应返回 5 的计数。

我的目标的命令式代码风格。

Scanner key = new Scanner("1 1 1 2 1 1 3 3 3 3 3 3 3 3 3 3 4 4 4 5 4 4 4 6");

int cnt = 0;
int counter = 0;
int i = 0;

while(key.hasNextInt()) {
int next = key.nextInt();

if(next == array[i]) {
counter++;
}

if(i + 1 < array.length && i -1 >= 0
&& counter >=size
&& next != array[i + 1]
&& next == array[i-size + 1]) {
cnt++;
counter = 0;
}
i++;
}
return cnt;

这个的预期返回同上。

实际返回为:

size 1 count == 7

size 2 count == 5

size 6 count == 3

size 8 count == 1

这个循环的问题是我认为它跳过了数组的第一部分和最后一部分。

我没有遇到与 Stream 方式相同的排序问题。

理想情况下,这不需要任何外部实用程序/库

最佳答案

首先,我建议找到所有子组。为此,您可以将 Stream.collect() 与自定义收集器一起使用:

List<List<Integer>> sublists = IntStream.of(1, 1, 1, 2, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 5, 4, 4, 4, 6)
.collect(ArrayList::new, (lists, value) -> {
if (lists.isEmpty() || lists.get(lists.size() - 1).stream().noneMatch(e -> e == value)) {
lists.add(new ArrayList<>());
}
lists.get(lists.size() - 1).add(value);
}, (l1, l2) -> {
throw new RuntimeException("not supported for parallel streams");
});

结果是:

[[1, 1, 1], [2], [1, 1], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [4, 4, 4], [5], [4, 4, 4], [6]]

现在您可以使用它来对列表大小进行分组:

Map<Integer, Long> result = sublists.stream()
.collect(Collectors.groupingBy(List::size, Collectors.counting()));
result.forEach((size, count) -> System.out.println(String.format("size %s count %s", size, count)));

这会找到所有现有的组大小和打印:

size 1 count 3
size 2 count 1
size 3 count 3
size 10 count 1

要计算所有具有最小长度的组,您可以使用:

Map<Integer, Long> result = IntStream.rangeClosed(1, sublists.stream().mapToInt(List::size).max().orElse(0)).boxed()
.collect(Collectors.toMap(Function.identity(), i -> sublists.stream().filter(l -> l.size() >= i).count()));
result.forEach((size, count) -> System.out.println(String.format("size %s count %s", size, count)));

这打印:

size 1 count 8
size 2 count 5
size 3 count 4
size 4 count 1
size 5 count 1
size 6 count 1
size 7 count 1
size 8 count 1
size 9 count 1
size 10 count 1

要仅获得一组预定义的尺寸(例如 1, 2, 6, 8),您可以修改最后一个解决方案:

Map<Integer, Long> result = IntStream.of(1, 2, 6, 8).boxed()
.collect(Collectors.toMap(Function.identity(), i -> sublists.stream().filter(l -> l.size() >= i).count()));
result.forEach((size, count) -> System.out.println(String.format("size %s count %s", size, count)));

结果是:

size 1 count 8
size 2 count 5
size 6 count 1
size 8 count 1

关于java - 如何在不对数组进行排序的情况下计算数组中的整数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55434126/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com