📜  C++ STL中的多集cbegin()和cend()函数

📅  最后修改于: 2021-05-30 18:37:37             🧑  作者: Mango

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

句法:

constant_iterator multiset_name.cbegin()

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

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

下面的程序说明了multiset :: cbegin()方法。

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


C++
// C++ program to demonstrate the
// multiset::cend() function
#include 
using namespace std;
int main()
{
 
    int arr[] = { 14, 10, 15, 11, 10, 15, 17, 17 };
 
    // initializes the set from an array
    multiset s(arr, arr + 8);
 
    // 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()方法。

C++

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