C++ Vector資料插入

※宋健※發表於2020-11-14

用迭代器向vector插入資料時,要注意控制迭代器的位置,直接插入,程式會直接崩潰。

下面用程式碼解釋這個問題。

#include <iostream>
#include <vector>
using namespace std;

//元素值與3取餘是0時插入一個數字
void VectorInsert(){
    vector<int> v{1,2,3,4,5,7,8,9};
    auto it=v.begin();
    int cnt=0;
    while(it != v.end()){
        if((*it)%3==0){
            it=v.insert(it, (*it)+100);
            ++it; //控制迭代器位置,這一步很關鍵
        }
        ++it;
        cnt++;
        if(cnt>20){
            break;
        }
    }
    for (int n:v){
        cout<<n<<endl;
    }
}

void WrongInsert(){
    vector<int> v{1,2,3,4,5,7,8,9};
    for(auto it=v.begin();it != v.end();it++){
        if((*it)%3==0){
            v.insert(it, *it+20);
        }
    }
    for (int n:v){
        cout<<n<<endl;
    }
}

int main(int argc, const char * argv[]) {
    VectorInsert();
    cout<<"-----------"<<endl;
    //WrongInsert();直接崩潰
    cout << "Hello, World!\n";
    return 0;
}

 

相關文章