题解 | #迭代器遍历set#

迭代器遍历set

https://www.nowcoder.com/practice/7e57c0f7af86429db20c70053f23ea96

#include<bits/stdc++.h>
using namespace std;
int main(){
	set<int>s;
	int num;
	// write your code here......
	for (int i = 0; i < 5; ++i)
	{
		cin >> num;
		s.insert(num);
	}
	for (auto it = s.begin(); it != s.end(); ++it)
		cout << *it << " ";
	return 0;
}

考差set初始化和迭代器的语法。

全部评论

相关推荐

职场水母:你确定你不是在反串?另外这里是牛客,
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务