計算集合的並

2021-09-10 01:45:05 字數 848 閱讀 7484

題目

問題描述

給你兩個集合,計算其並集,即 + + +。

注:+ + + 中不允許出現重複元素,但是 與 之間可能存在相同元素。

輸入格式

輸入資料分為三行,第一行有兩個數字 n,m(0#include

#include

using

namespace std;

intmain()

bool flag =

false

;for

(set<

int>

::iterator it = s.

begin()

;it != s.

end(

);it++

)return0;

**二

#include

#include

#include

using

namespace std;

intmain()

for(

int i=

0;i)//reserve

vector<

int> ans;

for(set<

int>

::iterator it=sum.

begin()

;it!=sum.

end(

);it++

)//output

for(

int i=

0;isize()

;i++

)return0;

}

計算集合的並

description 給你兩個集合,計算其並集,即 注 中不允許出現重複元素,但是 與 之間可能存在相同元素。input 輸入資料分為三行,第一行有兩個數字 n,m 0output 輸出一行資料,表示合併後的集合,要求從小到大輸出,每個元素之間用乙個空格隔開。sample input 1 1 21...

計算集合的並

description 給你兩個集合,計算其並集,即 注 中不允許出現重複元素,但是 與 之間可能存在相同元素。input 輸入資料分為三行,第一行有兩個數字 n,m 0output 輸出一行資料,表示合併後的集合,要求從小到大輸出,每個元素之間用乙個空格隔開。sample input 1 1 21...

計算集合的並 set

給你兩個集合,計算其並集,即 注 中不允許出現重複元素,但是 與之間可能存在相同元素。輸入格式 輸入資料分為三行,第一行有兩個數字n,m 0 n,m 10000 分別表示集合 a 和集合 b 的元素個數。後兩行分別表示集合 a 和集合 b。每個元素為不超出 int 範圍的整數,每個元素之間用乙個空格...