これについてもっと詳しく調べるには、C + +を学ぶことについて真剣に考えていなければなりません。索引やランダムアクセスを使わないで、高水準のSTL関数を使用してください。考えてみましょう:
あなたが書いたループは、これらの線にほぼ対応
#include <algorithm>
#include <iostream>
#include <map>
#include <numeric>
#include <set>
#include <string>
#include <vector>
bool is_vowel(char s) {
static const char vowels[] = { 'a', 'e', 'i', 'o', 'u' };
const char* vbegin = vowels;
const char* vend = vowels + sizeof(vowels)/sizeof(char);
return (std::find(vbegin, vend, s) != vend);
}
std::string::difference_type count_vowels(const std::string& s) {
return std::count_if(s.begin(), s.end(), is_vowel);
}
template <class T> void printval(const T& obj) { std::cout << obj << std::endl; }
int main() {
std::vector<std::string> b;
b.push_back("test");
b.push_back("aeolian");
b.push_back("Mxyzptlk");
std::vector<int> counts(b.size());
std::transform(b.begin(), b.end(), counts.begin(), count_vowels);
std::for_each(counts.begin(), counts.end(), printval<int>);
int total = std::accumulate(counts.begin(), counts.end(), 0);
printval(total);
return 0;
}
:
std::transform(b.begin(), b.end(), counts.begin(), count_vowels);
..
std::count_if(s.begin(), s.end(), is_vowel);
..
std::find(vbegin, vend, s)
これは、C++がIMO引っ張っ常にエレガントではない高レベルの機能/ジェネリックプログラミングのイディオムを使用しています。しかし、この場合は正常に動作します。
私が解決しようとしている問題の一部を解決するための解説については、Count no of vowels in a stringを参照してください。そこに表示されているさまざまな許容ループ/反復技術を見ることができます。
ほとんどの場合、次のようになります。if(b [i] [j] == vowels [v]) – alfasin
なぜイテレータではないのですか? – Pubby