中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

字符串去重C++庫函數

發布時間:2024-10-09 14:55:17 來源:億速云 閱讀:108 作者:小樊 欄目:編程語言

在 C++ 中,可以使用 std::setstd::unordered_set 容器來實現字符串去重。這兩個容器中的元素都是唯一的,因此可以將字符串插入其中,然后將重復的字符串過濾掉。

以下是使用 std::set 進行字符串去重的示例代碼:

#include <iostream>
#include <set>
#include <string>
#include <vector>

int main() {
    std::vector<std::string> strs = {"apple", "banana", "orange", "apple", "banana", "grape"};

    // 使用 set 去重
    std::set<std::string> str_set(strs.begin(), strs.end());

    // 將去重后的字符串存入 vector 中
    std::vector<std::string> unique_strs(str_set.begin(), str_set.end());

    // 輸出去重后的字符串
    for (const auto& str : unique_strs) {
        std::cout << str << std::endl;
    }

    return 0;
}

輸出結果為:

apple
banana
grape
orange

以下是使用 std::unordered_set 進行字符串去重的示例代碼:

#include <iostream>
#include <unordered_set>
#include <string>
#include <vector>

int main() {
    std::vector<std::string> strs = {"apple", "banana", "orange", "apple", "banana", "grape"};

    // 使用 unordered_set 去重
    std::unordered_set<std::string> str_set(strs.begin(), strs.end());

    // 將去重后的字符串存入 vector 中
    std::vector<std::string> unique_strs(str_set.begin(), str_set.end());

    // 輸出去重后的字符串
    for (const auto& str : unique_strs) {
        std::cout << str << std::endl;
    }

    return 0;
}

輸出結果為:

apple
banana
grape
orange
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

忻城县| 彭山县| 册亨县| 斗六市| 明溪县| 公主岭市| 金门县| 泸州市| 咸丰县| 辽宁省| 永济市| 恩平市| 长宁区| 西昌市| 正蓝旗| 谷城县| 纳雍县| 太保市| 积石山| 永新县| 丰都县| 石河子市| 二连浩特市| 旌德县| 潜江市| 屯昌县| 阿鲁科尔沁旗| 浦东新区| 邵武市| 天镇县| 青海省| 新兴县| 漳州市| 读书| 渝北区| 曲周县| 隆子县| 吴川市| 乌拉特中旗| 迁西县| 弋阳县|