使用C ++中的集合

时间:2011-01-02 11:55:20

标签: c++ set stdset

如何在C ++中定义集合并将值插入其中?

1 个答案:

答案 0 :(得分:16)

使用<set>中的std::set class

std::set<int> s; // define a set of ints
s.insert(1);     // insert into a set