溫馨提示×

c++中set容器遍歷的方法是什么

c++
小億
216
2024-04-20 17:20:42
欄目: 編程語言

在C++中,可以使用迭代器來遍歷set容器。以下是一個簡單的示例:

#include <iostream>
#include <set>

int main() {
    std::set<int> mySet = {1, 2, 3, 4, 5};

    for (auto it = mySet.begin(); it != mySet.end(); ++it) {
        std::cout << *it << " ";
    }

    return 0;
}

在這個示例中,首先創(chuàng)建了一個包含一些整數(shù)的set容器。然后使用迭代器it來遍歷set容器,并打印每個元素的值。最后輸出結(jié)果為:1 2 3 4 5。

0