在给定键的地图向量内找到项目(C ++)

时间:2015-04-14 15:47:06

标签: c++ visual-studio pointers vector quantlib

我试图使用地图矢量调试编码(C ++ / Quantlib)。基本上我想在地图中找到一个项目,该项目又在矢量中。但抓住了错误。

输入:

vector<map <Date, Real> > simulatedPrices_;    // a vector containing 1000 maps
vector<Date> cds_maturities_;

私人变量:

map <Date, Real> pricePathJ;    // for reading each map in the vector
Real w_t_;    //

编码:

for (int j = 0; j < no_of_paths; j++) {
    pricePathJ = simulatedPrices_[j];
    for (int i = 0; i <= iTenor_; i++) {    //iTenor is the number of element inside vector cds_maturities_
        startDate = ......;
        endDate = ......;
        w_t_ = pricePathJ.find(cds_maturities_[i]);    // error in pricePathJ saying there is no conversion function from iterator ... the pair<Date, Real> to Real. 
        ......

我是否犯了任何错误,或者在上面的编码中是否有任何我忽略的指针类型?谢谢。

备注:变量类型Real类似于Double

1 个答案:

答案 0 :(得分:0)

您可以使用简单的for循环并使用map find()函数来执行此操作。它将返回匹配

的第一个Real
Real FindReal(const std::vector<std::map<Date, Real>> & data, const Date & findDate)
{
    for (auto&& e : data)
    {
        auto it = e.find(findDate);
        if (it != e.end())
            return it->second;
    }
    return some_value_if_not_found;
}