将 vector<string> 元素复制到其他其他 vector<string>* (1 作为指针传递)

Posted

技术标签:

【中文标题】将 vector<string> 元素复制到其他其他 vector<string>* (1 作为指针传递)【英文标题】:copy a vector<string> elements to other other vector<string>* (1 passing as pointer) 【发布时间】:2019-12-19 05:58:52 【问题描述】:
void check_and_fix_problems(vector<string>* fileVec, int index) 

    vector<string> q =  "something", "else", "here" ;

    q.insert(q.end(), fileVec->begin() + index + 2, fileVec->end()); //add at the end of q vector the fileVec vector

    for (int f = 0; f < q.size(); f++) //here is the problem/s
        std::copy(q.at(f).begin(), q.at(f).end(), fileVec->at(f)); //copy q vector to fileVec
        //fileVec->at(f) = q.at(f);
    

我对这段代码有疑问,当我调用它时,我得到 fileVec 向量超出范围的运行时错误(我猜是因为 q 向量的元素比 fileVec 多,所以一些索引超出范围)但是我怎么能通过指针增加向量的向量大小?

并且在这里使用 std::copy 也很重要,或者我可以简单地使用 fileVec->at(f) = q.at(f); 做同样的事情? (因为我知道,当这个函数返回时,函数中的所有内容都将被删除,结果将是 fileVec 中的所有元素都显示在 nullptr)。

【问题讨论】:

如果没有minimal reproducible example,我们只能猜测您的问题。 index 可能超出范围,fileVec 可能为空或其他。请edit您的问题包含最少和完整的代码来重现您的问题 你能说出你想在这段代码中做什么吗?是否将向量 q 的内容复制到特定索引处的向量 fileVec 中? 请澄清:所以首先你将fileVec 附加到q,然后......你想做什么? *fileVec = q; 而不是您的 for 循环以什么方式不能回答您的问题? @Giannis 您至少可以澄清您的问题或评论,让我们知道问题是否已解决,或者提供的答案是否有用。 【参考方案1】:

所以我在这里尝试修复您的代码,尽管我仍然不知道您到底在做什么。我假设您需要在另一个向量的给定索引处插入另一个向量元素。一旦您说出确切的要求,就可以进行相应的修改:

void check_and_fix_problems(std::vector<string> &fileVec, int index) 

    std::vector<string> q =  "something", "else", "here" ;

    q.insert(q.end(), fileVec.begin() + index + 2, fileVec.end()); //add at the end of q vector the fileVec vector

    //for debugging purpose
    std::cout << "q in function contains:";
    for (std::vector<string>::iterator it = q.begin() ; it < q.end(); it++)
        std::cout << ' ' << *it;
    std::cout << '\n';

    //vector<string>::iterator itr;
    // for (itr = q.begin(); itr != q.end(); itr++) //here is the problem/s
    //     fileVec.insert(fileVec.begin() + index,*itr); //copy q vector to fileVec
    //     //fileVec->at(f) = q.at(f);
    // 
    fileVec.insert(fileVec.begin() + index, q.begin(),q.end());


int main ()

    std::vector<string> a = "xyz","abc","says","hello";
    check_and_fix_problems(a, 1);
    std::cout << "a contains:";
    for (std::vector<string>::iterator it = a.begin() ; it < a.end(); it++)
        std::cout << ' ' << *it;
    std::cout << '\n';
    return 0;

这给出了以下输出:

q in function contains: something else here hello
a contains: xyz something else here hello abc says hello

【讨论】:

以上是关于将 vector<string> 元素复制到其他其他 vector<string>* (1 作为指针传递)的主要内容,如果未能解决你的问题,请参考以下文章

(C++)将string型vector中的元素复制到char型数组中。。出错!

关于将vector元素复制到数组

c++使vector<string>容器中几个元素组成一个字符串,作为vector容器的第一个元素?

比较 list<string> 和 vector<string> 中的字符串元素

c++ io 库将文件内容读入到vector对象

StrBlob类——智能指针作为成员