Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ランダムアクセス反復子を使用して、それらが指す要素に対して任意のオフセット位置にある要素にアクセスできる場合 (どういうわけかポインターのように)、 をstd::copy()使用する代わりに一般的なアルゴリズムで使用できないのはなぜback_insert_iteratorですか? 両方の違いは何ですか?
std::copy()
back_insert_iterator
通常の反復子は、保持しているデータ型を除いて、使用されているコンテナーについて何も知りません。コンテナに要素を追加するには、ベクトルとしましょう。ベクトル内の要素の数を知る必要があります。