您好,登錄后才能下訂單哦!
#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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。