- multiset :: begin()是C++ STL中的内置函数,该函数返回指向多集容器中第一个元素的迭代器。由于multiset始终以有序方式包含元素,因此begin()始终根据排序标准指向第一个元素。
句法:
iterator multiset_name.begin()
参数:该函数不接受任何参数。
返回值:该函数返回一个迭代器,该迭代器指向容器中的第一个元素。
下面的程序说明了上述函数:
// CPP program to demonstrate the // multiset::begin() 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); // Print the first element cout << "The first element is: " << *(s.begin()) << endl; // prints all elements in set for (auto it = s.begin(); it != s.end(); it++) cout << *it << " "; return 0; } 输出:The first element is: 10 10 10 11 14 15
- multiset :: end()是C++ STL中的内置函数,它返回一个迭代器,该迭代器指向容器中最后一个元素之后的位置。
句法:iterator multiset_name.end()
参数:该函数不接受任何参数。
返回值:该函数返回一个迭代器,该迭代器指向多集容器中容器中最后一个元素之后的位置。
下面的程序说明了上述函数:
// CPP program to demonstrate the // multiset::end() function #include
using namespace std; int main() { int arr[] = { 14, 10, 15, 11, 10, 12, 17, 12 }; // initializes the set from an array multiset s(arr, arr + 8); // prints all elements in set for (auto it = s.begin(); it != s.end(); it++) cout << *it << " "; return 0; } 输出:10 10 11 12 12 14 15 17
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。