for (const auto &s : strs) {} 和迭代器

本文介绍了C++11中的范围for循环这一特性,通过对比传统的迭代器方式,展示了其简洁性和便利性。文章还提供了使用范围for循环遍历vector<string>的具体示例,并比较了不同迭代方式的实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

vector<string> &strs;
for (const auto &s : strs){
//
}

It's actually a C++11 feature called "range-based for-loops".

近似等价于:

// Let's assume this vector is not empty.
vector<string> strs;

const vector<string>::iterator end_it = strs.end();

for (vector<string>::iterator it = strs.begin(); it != end_it; ++it) {
  const string& s = *it;
  // Some code here...
}

感觉确实精简了许多。

迭代器的几种输出方式:

#include<vector>
#include<string>
#include<iostream>
using namespace std;
int main(){
	vector<string> text;
	string word;
	while (getline(cin, word)){//循环读入字符串至vector<string>中,以trl+z回车结束
		text.push_back(word);
	}
	//下标迭代方式输出
	cout << "下标迭代方式输出" << endl;
	for (vector<string>::size_type ix = 0; ix != text.size(); ++ix)
		cout << text[ix] << endl;

	//迭代器方式输出
	cout << "迭代器方式输出" << endl;
	for (vector<string>::iterator it = text.begin(); it != text.end(); it++){
		cout << *it << endl;
	}
	//int result = uniqueMorseRepresentations(text);

	//精简迭代方式输出
	cout << "精简迭代方式输出" << endl;
	for (const string& words : text){
		cout << words << endl;
	}
	getchar();
	return 1;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值