📅  最后修改于: 2023-12-03 14:59:46.132000             🧑  作者: Mango
STL(Standard Template Library)是C++的一个标准库,它包含了许多具有复用性和高效性的算法和数据结构。其中,set是一个有序的容器,它具有以下特点:
set.begin()函数是set容器类中的一个成员函数,用于返回set容器中最小的元素的迭代器。本文将对set.begin()函数进行详细介绍。
set_name.begin()
其中,set_name为set容器的名称。
set.begin()函数返回一个指向set容器中最小元素的迭代器。
#include <iostream>
#include <set>
using namespace std;
int main() {
set<int> my_set = {5, 1, 9, 3, 7};
cout << "The first element of the set is: " << *(my_set.begin()) << endl;
return 0;
}
代码解释:
输出结果:
The first element of the set is: 1