📜  在C++ STL中设置crbegin()和crend()函数

📅  最后修改于: 2021-05-30 11:26:12             🧑  作者: Mango

set :: crbegin()是C++ STL中的内置函数,它返回一个常量迭代器,该迭代器指向容器中的最后一个元素。迭代器不能用于修改set容器中的元素。可以增加或减少迭代器以遍历集合。
句法:

constant_iterator set_name.crbegin()

参数:该函数不带任何参数。
返回值:该函数返回一个常量迭代器,该迭代器指向容器中的最后一个元素。
演示set :: crbegin()方法的程序:

CPP
// CPP program to demonstrate the
// set::crbegin() function
#include 
using namespace std;
int main()
{
 
    int arr[] = { 14, 12, 15, 11, 10 };
 
    // initializes the set from an array
    set s(arr, arr + 5);
 
    // prints all elements in set
    for (auto it = s.crbegin(); it != s.crend(); it++)
        cout << *it << " ";
 
    return 0;
}


CPP
// CPP program to demonstrate the
// set::crend() function
#include 
using namespace std;
int main()
{
 
    int arr[] = { 14, 12, 15, 11, 10 };
 
    // initializes the set from an array
    set 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

// CPP program to demonstrate the
// set::crend() function
#include 
using namespace std;
int main()
{
 
    int arr[] = { 14, 12, 15, 11, 10 };
 
    // initializes the set from an array
    set 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++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”