要找出重復(fù)的字符串,可以使用HashMap來記錄每個(gè)字符串出現(xiàn)的次數(shù)。
具體步驟如下:
以下是一個(gè)示例代碼:
import java.util.HashMap;
import java.util.Map;
public class FindDuplicateStrings {
public static void main(String[] args) {
String[] strings = {"hello", "world", "hello", "java", "world"};
Map<String, Integer> stringCountMap = new HashMap<>();
for (String str : strings) {
if (stringCountMap.containsKey(str)) {
int count = stringCountMap.get(str);
stringCountMap.put(str, count + 1);
} else {
stringCountMap.put(str, 1);
}
}
for (Map.Entry<String, Integer> entry : stringCountMap.entrySet()) {
if (entry.getValue() > 1) {
System.out.println("重復(fù)字符串:" + entry.getKey());
}
}
}
}
執(zhí)行以上代碼,輸出結(jié)果為:
重復(fù)字符串:hello
重復(fù)字符串:world