C++ STL set::insert() 函数
set::insert() 函数是一个预定义的函数,用于向集合容器中插入一个元素。
原型:
set<T> st; //declaration st.insert(T item);
参数:
T item; //T is the data type
返回类型:指向插入值的迭代器指针
用法:该函数向集合中插入元素。
时间复杂度:O(1)
例:
For a set of integer, set<int> st; st.insert(5); st.insert(4); set content://sorted always(ordered) 4 5
要包含的头文件:
#include <iostream> #include <set> OR #include <bits/stdc++.h>
C++ 实现:
#include <bits/stdc++.h>
using namespace std;
void printSet(set<int> st){
set<int>::iterator it;
cout<<"Set contents are:\n";
for(it=st.begin();it!=st.end();it++)
cout<<*it<<" ";
cout<<endl;
}
int main(){
cout<<"Example of insert function\n";
set<int> st;
set<int>::iterator it;
cout<<"inserting 4\n";
st.insert(4);
cout<<"inserting 6\n";
st.insert(6);
cout<<"inserting 10\n";
st.insert(10);
printSet(st); //printing current set
return 0;
}
输出
Example of insert function inserting 4 inserting 6 inserting 10 Set contents are: 4 6 10
相关用法
- C++ set::rbegin()、set::rend()用法及代码示例
- C++ set::begin()、set::end()用法及代码示例
- C++ set::lower_bound()用法及代码示例
- C++ set::erase()用法及代码示例
- C++ set::size()用法及代码示例
- C++ set::empty()用法及代码示例
- C++ set::clear用法及代码示例
- C++ set::find()用法及代码示例
- C++ set::erase用法及代码示例
- C++ set::swap()用法及代码示例
- C++ set::upper_bound()用法及代码示例
- C++ set::clear()用法及代码示例
- C++ set::key_comp()用法及代码示例
- C++ set::emplace()用法及代码示例
- C++ set rbegin()用法及代码示例
- C++ set upper_bound()用法及代码示例
- C++ set swap()用法及代码示例
- C++ set size()用法及代码示例
- C++ set lower_bound()用法及代码示例
- C++ set erase()用法及代码示例
注:本文由纯净天空筛选整理自 set::insert() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。