特定の要素を検索して、std :: vector内でカウントするにはどうすればよいですか?それは速くなければなりません。助けてください、ありがとう。
これは私がこれまでに持っているものです:
// Lets assume the Database is sorted (which it will be)
std::vector< std::string > Database( 3 );
Database.push_back( "Password123" );
Database.push_back( "HelloWorld!!!" );
Database.push_back( "HelloWorld!!!" );
//...
std::string Password = "HelloWorld!!!";
// Search and count Password?
// Should return true and 2
ああ、インデックス作成はイテレータよりも遅いと聞きました。それは本当ですか?