91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

C++ set實現集合的交集、并集

發布時間:2024-08-15 10:37:28 來源:億速云 閱讀:224 作者:小樊 欄目:編程語言
#include <iostream>
#include <set>

using namespace std;

set<int> intersection(set<int> set1, set<int> set2) {
    set<int> result;
    for (int num : set1) {
        if (set2.count(num) > 0) {
            result.insert(num);
        }
    }
    return result;
}

set<int> unionSet(set<int> set1, set<int> set2) {
    set<int> result = set1;
    result.insert(set2.begin(), set2.end());
    return result;
}

int main() {
    set<int> set1 = {1, 2, 3, 4, 5};
    set<int> set2 = {3, 4, 5, 6, 7};

    set<int> intersect = intersection(set1, set2);
    set<int> unite = unionSet(set1, set2);

    cout << "Intersection:";
    for (int num : intersect) {
        cout << " " << num;
    }
    cout << endl;

    cout << "Union:";
    for (int num : unite) {
        cout << " " << num;
    }
    cout << endl;

    return 0;
}

這段代碼演示了如何使用C++的set容器來實現集合的交集和并集操作。通過intersection函數可以計算兩個set的交集,通過unionSet函數可以計算兩個set的并集。在main函數中,我們定義了兩個set,然后計算它們的交集和并集,并輸出結果。輸出結果將會是:

Intersection: 3 4 5
Union: 1 2 3 4 5 6 7
向AI問一下細節

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

c++
AI

临夏市| 永安市| 吕梁市| 商洛市| 铅山县| 安岳县| 勐海县| 门源| 长沙县| 苗栗县| 长白| 大姚县| 田东县| 恩施市| 武平县| 平湖市| 肇源县| 治多县| 桐梓县| 巴东县| 兴隆县| 东源县| 乐东| 衡阳县| 沙雅县| 锡林浩特市| 睢宁县| 沙河市| 磐安县| 马龙县| 武山县| 柘荣县| 卫辉市| 永平县| 工布江达县| 礼泉县| 昌江| 称多县| 望谟县| 淳化县| 贵南县|