为了账号安全,请及时绑定邮箱和手机立即绑定

在java中从数组中查找重复元素出现两次以上

在java中从数组中查找重复元素出现两次以上

LEATH 2021-06-07 10:42:20
我想从数组中找出重复的元素和索引号。我为此写了一个代码。它运行良好,但只有在重复元素的数量超过 2 时才无法生成准确的输出。我从文件中读取值,然后构建一个数组,然后从该数组中搜索重复元素。import java.io.File;import java.util.Arrays;import java.util.Scanner;public class T1 {public static void main(String args[]) throws Exception{    Scanner x=new Scanner(new File("C:\\Duplicate_array.txt"));    int [] duplicate_data=new int[9];    int i1=0;    while(x.hasNext()){        int a=x.nextInt();        duplicate_data[i1]=a;        i1++;    }    System.out.println(Arrays.toString(duplicate_data));    for (int i = 0; i < duplicate_data.length-1; i++) {        for (int j = i+1; j < duplicate_data.length; j++) {            if ((duplicate_data[i] == duplicate_data[j]) && (i != j)) {                System.out.println("Duplicate Element : "+duplicate_data[j]);                System.out.println("Index of that duplicate element : "+j);            }        }    }}}这是我的输出:[5, 6, 1, 6, 9, 5, 2, 1, 5]Duplicate Element : 5Index of that duplicate element : 5Duplicate Element : 5Index of that duplicate element : 8Duplicate Element : 6Index of that duplicate element : 3Duplicate Element : 1Index of that duplicate element : 7Duplicate Element : 5Index of that duplicate element : 8最后一行错误。它已经在开始的位置找到 5:8。但在程序结束时它再次搜索 5 并给出位置编号。最后的搜索是不必要的。如何摆脱最后一次搜索?
查看完整描述

3 回答

?
PIPIONE

TA贡献1829条经验 获得超9个赞

您只想遍历数组一次。如果你想要的只是重复,你可以简单地通过跟踪你在使用之前看到的任何值来做到这一点ArrayList:


int[] data = {5, 6, 1, 6, 9, 5, 2, 1, 5};


System.out.println(Arrays.toString(data));


ArrayList<Integer> seenBeforeList = new ArrayList<>();

for(int index = 0; index < data.length; index++){

    int value = data[index];

    if(seenBeforeList.contains(value)){

        System.out.println("Duplicate Element : " + value);

        System.out.println("Index of that duplicate element : " + index);

    } else {

        seenBeforeList.add(value);

    }

}

输出:


[5, 6, 1, 6, 9, 5, 2, 1, 5]

Duplicate Element : 6

Index of that duplicate element : 3

Duplicate Element : 5

Index of that duplicate element : 5

Duplicate Element : 1

Index of that duplicate element : 7

Duplicate Element : 5

Index of that duplicate element : 8

如果您想按值分组,那么使用 a 更有意义HashMap,将值存储为键,将索引存储为值。然后简单地遍历HashMap.


查看完整回答
反对 回复 2021-06-10
?
小唯快跑啊

TA贡献1863条经验 获得超2个赞

(i != j)在您的 if 语句中没有必要,因为j总是领先i1,但这不是您的问题。


您可以尝试使用重复数组标志来了解何时已经找到重复项。


import java.util.Arrays;


public class StackOverflow {

    public static void main(String args[]) throws Exception {

        int[] duplicate_data = {5,6,1,6,9,5,2,1,5};

        boolean[] duplicate = new boolean[duplicate_data.length];


        System.out.println(Arrays.toString(duplicate_data));

        for (int i = 0; i < duplicate_data.length - 1; i++) {

            for (int j = i + 1; j < duplicate_data.length; j++) {

                // Make sure you haven't flagged this as a duplicate already

                if (!duplicate[j] && duplicate_data[i] == duplicate_data[j]) {

                    duplicate[j] = true;

                    System.out.println("Duplicate Element : " + duplicate_data[j]);

                    System.out.println("Index of that duplicate element : " + j);

                }

            }

        }

    }

}

结果:


[5, 6, 1, 6, 9, 5, 2, 1, 5]

Duplicate Element : 5

Index of that duplicate element : 5

Duplicate Element : 5

Index of that duplicate element : 8

Duplicate Element : 6

Index of that duplicate element : 3

Duplicate Element : 1

Index of that duplicate element : 7


查看完整回答
反对 回复 2021-06-10
?
叮当猫咪

TA贡献1776条经验 获得超12个赞

它正在再次搜索相同的重复项,因为您没有以任何方式存储以前找到的重复项。因此,您必须使用数据结构来存储以前找到的重复项,而不是再次搜索它们。这让我们找到了一个更好的解决方案来查找重复项,它从一开始就使用哈希集,因为它是 O(n) 而不是 O(n^2)


import java.io.File;

import java.util.Arrays;

import java.util.Scanner;


public class T1 {

    public static void main(String args[]) throws Exception {

        Scanner x=new Scanner(new File("C:\\Duplicate_array.txt"));

        Set<Integer> set = new HashSet<Integer>();

        int index = 0;

        while(x.hasNext()){

            int nextNumber = x.nextInt();

            if (set.contains(nextNumber)) {

                System.out.println("Duplicate Element : " + nextNumber);

                System.out.println("Index of that duplicate element : "+index); 

            } else

                set.add(nextNumber);

        }

    }

}

如您所见,使用 时HashSet,我们不需要两个嵌套for循环。我们可以HashSet在常数时间 O(1) 内测试 a 是否包含一个数字,这消除了逐个元素搜索整个数组以找到重复项的需要。


查看完整回答
反对 回复 2021-06-10
  • 3 回答
  • 0 关注
  • 436 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信