- set::crbegin()是C++ STL中的內置函數,它返回指向容器中最後一個元素的常量迭代器。迭代器不能用於修改set容器中的元素。可以增加或減少迭代器以遍曆集合。
用法:
constant_iterator set_name.cregin()
參數:該函數不帶任何參數。
返回值:該函數返回一個常量迭代器,指向容器中的最後一個元素。
演示set::cregin()方法的程序:
// CPP program to demonstrate the // set::cregin() 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.crbegin(); it != s.crend(); it++) cout << *it << " "; return 0; }
輸出:15 14 12 11 10
- set::crend()是C++ STL中的內置函數,該函數返回一個常量迭代器,該迭代器指向容器中第一個元素之前的位置。迭代器不能用於修改set容器中的元素。可以增加或減少迭代器以遍曆集合。
用法:
constant_iterator set_name.crend()
參數:該函數不帶任何參數。
返回值:該函數返回一個常數迭代器,該迭代器指向set容器中第一個元素之前的位置。
演示set::crend()方法的程序:
// CPP program to demonstrate the // set::crend() 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.crbegin(); it != s.crend(); it++) cout << *it << " "; return 0; }
輸出:15 14 12 11 10
相關用法
- C++ map crbegin()、crend()用法及代碼示例
- C++ multiset crbegin()、crend()用法及代碼示例
- C++ list crbegin()、crend()用法及代碼示例
- C++ array::crbegin()、array::crend()用法及代碼示例
- C++ multimap::crbegin()、multimap::crend()用法及代碼示例
- C++ deque crend用法及代碼示例
- C++ deque crbegin用法及代碼示例
- C++ div()用法及代碼示例
- C++ fma()用法及代碼示例
- C++ log()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 set crbegin() and crend() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。