EzoeRyou/cpp-intro

016-algorithm.md の copyアルゴリズムの実質的に..のコード例がわからない

Closed this issue · 1 comments

016-algorithm.md に copyアルゴリズムの説明で、「これは実質的に以下のような操作をしたのと等しい。」とありますが、sourceとdestinationの内容が同じになっていることがわかりません。代入かなにかが抜けているのではないでしょうか?

int main()
{
    std::vector<int> source = {1,2,3,4,5} ;
    std::vector<int> destination(5) ; 
}

例えば、以下のようであれば同じとわかります。

int main()
{
    std::vector<int> source = {1,2,3,4,5} ;
    std::vector<int> destination= {1,2,3,4,5}  ; 
}

修正した。