- set::cbegin()是C++ STL中的内置函数,该函数返回指向容器中第一个元素的常量迭代器。迭代器不能用于修改set容器中的元素。可以增加或减少迭代器以遍历集合。
用法:
constant_iterator set_name.cegin()
参数:该函数不接受任何参数。
返回值:该函数返回一个常量迭代器,该迭代器指向容器中的第一个元素。
程序来演示set::cegin()方法。
// CPP program to demonstrate the // set::cbegin() function #include <bits/stdc++.h> using namespace std; int main() { int arr[] = { 14, 12, 15, 11, 10 }; // initializes the set from an array set<int> s(arr, arr + 5); // prints all elements in set for (auto it = s.cbegin(); it != s.cend(); it++) cout << *it << " "; return 0; }
输出:10 11 12 14 15
- set::cend()是C++ STL中的内置函数,该函数返回一个常量迭代器,该迭代器指向容器中最后一个元素之后的位置。迭代器不能用于修改set容器中的元素。可以增加或减少迭代器以在集合中进行相应遍历。
用法:
constant_iterator set_name.cend()
参数:该函数不接受任何参数。
返回值:该函数返回一个常量迭代器,该迭代器指向容器中容器中最后一个元素之后的位置。
程序来演示set::cend()方法。
// CPP program to demonstrate the // set::cend() function #include <bits/stdc++.h> using namespace std; int main() { int arr[] = { 14, 12, 15, 11, 10 }; // initializes the set from an array set<int> s(arr, arr + 5); // prints all elements in set for (auto it = s.cbegin(); it != s.cend(); it++) cout << *it << " "; return 0; }
输出:10 11 12 14 15
相关用法
- C++ map cbegin()、cend()用法及代码示例
- C++ multiset cbegin()、cend()用法及代码示例
- C++ list cbegin()、cend()用法及代码示例
- C++ vector::cbegin()、vector::cend()用法及代码示例
- C++ array::cbegin()、array::cend()用法及代码示例
- C++ multimap::cbegin()、multimap::cend()用法及代码示例
- C++ unordered_multimap cend()用法及代码示例
- C++ unordered_multiset cend()用法及代码示例
- C++ unordered_set cend()用法及代码示例
- C++ unordered_multimap cbegin()用法及代码示例
- C++ unordered_multiset cbegin()用法及代码示例
- C++ unordered_set cbegin()用法及代码示例
- C++ forward_list::cend()用法及代码示例
- C++ unordered_map cend用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 set cbegin() and cend() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。