stream(流) iterator之一个例子

The following two simple programs sort all strings read from the standard input and print them without duplicates, by using two different containers. Compared with ordinary C or C++, the example does a lot of complex processing by using only a few statements:

  • Using vector
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iterator>
using namespace std;

void main()
{
	vector<string> coll;
	// read all words from the standard input
	// - source: all strings until end-of-file (or error)
	// - destination: coll (inserting)

	copy(istream_iterator<string>(cin),  // start of source
		 istream_iterator<string>(),     // end of source
		 back_inserter(coll));           // destination
	// vector<string> coll(istream_iterator<string> (cin), istream_iterator());

	sort(coll.begin(), coll.end());     // sort elements

	// print all elements without duplicates
	// - source: coll
	// - destination: standard output (with newline between elements)
	unique_copy(coll.begin(), coll.end(), // source
		ostream_iterator<string>(cout, "\n")); // // destination

	cin.get();
}
  • Using set
#include <iostream>
#include <string>
#include <algorithm>
#include <iterator>
#include <set>
using namespace std;
void main()
{
	// create a string set
	// - initialized by all words from standard input
	set<string> coll((istream_iterator<string>(cin)),
		istream_iterator<string>());

	// print all elements
	copy(coll.cbegin(), coll.cend(),
		ostream_iterator<string>(cout, "\n"));
}


 
 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值