- multiset::cbegin()是C++ STL中的內置函數,該函數返回指向容器中第一個元素的常量迭代器。迭代器不能用於修改set容器中的元素。可以增加或減少迭代器以遍曆集合。
用法:
constant_iterator multiset_name.cegin()
參數:該函數不接受任何參數。
返回值:該函數返回一個常量迭代器,該迭代器指向容器中的第一個元素。
以下示例程序旨在說明multiset::cbegin()方法。
// CPP program to demonstrate the // multiset::cbegin() function #include <bits/stdc++.h> using namespace std; int main() { int arr[] = { 14, 10, 15, 11, 10 }; // initializes the set from an array multiset<int> s(arr, arr + 5); // Prints the first element cout << "The first elements is:" << *(s.cbegin()) << endl; // prints all elements in set for (auto it = s.cbegin(); it != s.cend(); it++) cout << *it << " "; return 0; }
輸出:The first elements is:10 10 10 11 14 15
- multiset::cend(是C++ STL中的內置函數,該函數返回一個常量迭代器,該迭代器指向容器中最後一個元素之後的位置。迭代器不能用於修改set容器中的元素。可以增加或減少迭代器以在集合中進行相應遍曆。
用法:
constant_iterator multiset_name.cend()
參數:該函數不接受任何參數。
返回值:該函數返回一個常量迭代器,該迭代器指向容器中容器中最後一個元素之後的位置。
以下示例程序旨在說明multiset::cend()方法。
// CPP program to demonstrate the // multiset::cend() function #include <bits/stdc++.h> using namespace std; int main() { int arr[] = { 14, 10, 15, 11, 10, 15, 17, 17 }; // initializes the set from an array multiset<int> s(arr, arr + 8); // prints all elements in set for (auto it = s.cbegin(); it != s.cend(); it++) cout << *it << " "; return 0; }
輸出:10 10 11 14 15 15 17 17
相關用法
- C++ set cbegin()、cend()用法及代碼示例
- C++ map cbegin()、cend()用法及代碼示例
- C++ list cbegin()、cend()用法及代碼示例
- C++ array::cbegin()、array::cend()用法及代碼示例
- C++ vector::cbegin()、vector::cend()用法及代碼示例
- C++ multimap::cbegin()、multimap::cend()用法及代碼示例
- C++ unordered_set cend()用法及代碼示例
- C++ unordered_multimap cend()用法及代碼示例
- C++ unordered_multiset cend()用法及代碼示例
- C++ unordered_multimap cbegin()用法及代碼示例
- C++ unordered_multiset cbegin()用法及代碼示例
- C++ unordered_set cbegin()用法及代碼示例
- C++ multiset equal_range()用法及代碼示例
- C++ multiset count()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 multiset cbegin() and cend() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。