求一个集合的C++程序。求两个集合的合集 差集 交集

日期:2016-11-02 22:43:26 人气:1

求一个集合的C++程序。求两个集合的合集 差集 交集

#include#include#includeusing namespace std;void show_set(set a){ for(set::iterator i = a.begin(); i != a.end(); i++) { cout operator+(const set &a, const set& b){ set c; c = b; for(set::iterator i = a.begin(); i != a.end(); i++)
    A+
热门评论