gpt4 book ai didi

java - 如何在字符串数组中查找重复的字符串

转载 作者:行者123 更新时间:2023-12-01 18:14:07 25 4
gpt4 key购买 nike

我有以下代码,我只想检索那些重复的值,但找不到正确的结果。我不知道我错在哪里。

public class TestDummy {
public static void main(String args[]){
String arr[] ={"lady", "bird", "is","bird","lady","cook"};
int len = arr.length;
System.out.println("Size "+len);
for(int i=0 ; i<=len;i++){
for(int j=1 ; j< len-1;j++){
if(arr[i]==arr[j]){
System.out.println("Duplicate "+arr[i]);
}
}
}
}


}

最佳答案

    String arr[] ={"lady", "bird", "is","bird","lady","cook"};
Map<String, Integer> map = new HashMap<>();
for(String str: arr) {
if(map.containsKey(str)) {
map.put(str, map.get(str)+1);
} else{
map.put(str, 1);
}
}
for(String str: map.keySet()) {
if(map.get(str) > 1) {
System.out.println("Duplicate: "+ str+" count:"+map.get(str));
}
}

输出:

Duplicate: bird count:2
Duplicate: lady count:2

关于java - 如何在字符串数组中查找重复的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30773032/

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