1 Star 0 Fork 0

Ronin-yue/STL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
myset.cpp 569 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ronin-yue 提交于 2021-11-16 19:48 . myset
#include <iostream>
#include <set>
#include <string>
using namespace std;
int main()
{
//创建空set容器
std::set<std::string> myset;
//空set容器不存储任何元素
cout << "1.myset size = " << myset.size() << endl;
//向myset容器中插入新元素
myset.insert("a");
myset.insert("b");
myset.insert("c");
cout << "2.myset size = " << myset.size() << endl;
//利用双向迭代器,遍历myset
for (auto iter = myset.begin(); iter != myset.end(); ++iter)
{
cout << *iter << endl;
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/Ronin-yue/STL.git
[email protected]:Ronin-yue/STL.git
Ronin-yue
STL
STL
master

搜索帮助