#include <iostream>
#include <set>
using namespace std;
int main() {
set<int> s;
s.insert(1);
s.insert(2);
s.insert(1);
for (int x : s) {
cout << x << " "; //Output: 1 2
}
return 0;
}
#include <iostream>
#include <set>
using namespace std;
int main() {
set<int> s;
s.insert(1);
s.insert(2);
s.insert(3);
if (s.find(2) != s.end()) {
cout << "Found" << endl; //Output: Found
} else {
cout << "Not Found" << endl;
}
return 0;
}
#include <iostream>
#include <set>
using namespace std;
int main() {
set<int> s;
s.insert(3);
s.insert(1);
s.insert(2);
for (int x : s) {
cout << x << " "; //Output: 1 2 3
}
return 0;
}
总的来说,C++ 中的 set 容器在算法竞赛中有着广泛的应用,可以方侶进行去重操作、快速查找操作和有序遍历操作,提高代码编写效率和运行效率。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。