📜  在C++ STL中设置cbegin()和cend()函数

📅  最后修改于: 2021-05-30 02:16:33             🧑  作者: Mango

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

句法:

constant_iterator set_name.cbegin()

参数:该函数不接受任何参数。

返回值:该函数返回一个常量迭代器,该迭代器指向容器中的第一个元素。

程序演示set :: cbegin()方法。

C++
// C++ program to demonstrate the
// set::cbegin() 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.cbegin(); it != s.cend(); it++)
        cout << *it << " ";
 
    return 0;
}


C++
// C++ program to demonstrate the
// set::cend() 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.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()方法。

C++

// C++ program to demonstrate the
// set::cend() 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.cbegin(); it != s.cend(); it++)
        cout << *it << " ";
 
    return 0;
}
输出:
10 11 12 14 15



要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”