亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

java怎么找出重復的字符串

小億
134
2023-11-14 13:38:24
欄目: 編程語言

要找出重復的字符串,可以使用HashMap來記錄每個字符串出現的次數。

具體步驟如下:

  1. 創建一個HashMap對象,鍵為字符串,值為該字符串在輸入中出現的次數。
  2. 遍歷輸入的字符串數組或列表。
  3. 對于每個字符串,檢查它是否已經在HashMap中存在。
    • 如果存在,則將該字符串的次數加1。
    • 如果不存在,則將該字符串作為鍵加入HashMap,并將其次數設置為1。
  4. 最后,遍歷HashMap的所有鍵值對,找到出現次數大于1的字符串,即為重復的字符串。

以下是一個示例代碼:

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("重復字符串:" + entry.getKey());
            }
        }
    }
}

執行以上代碼,輸出結果為:

重復字符串:hello
重復字符串:world

0
潮州市| 吉木萨尔县| 丹凤县| 广饶县| 四会市| 寿光市| 阜新| 兴宁市| 内黄县| 长汀县| 房产| 安丘市| 西吉县| 雷山县| 五原县| 张掖市| 满城县| 安顺市| 尼勒克县| 呈贡县| 灵璧县| 疏附县| 余江县| 古蔺县| 天峻县| 凤山市| 华亭县| 日土县| 织金县| 沂南县| 合江县| 光泽县| 潍坊市| 库尔勒市| 榕江县| 大悟县| 无锡市| 阿拉善左旗| 奉新县| 扶沟县| 黄龙县|