0

これは私が実行しているコードです:

std::vector<std::vector<double>> test;
test.push_back(std::vector<double>(30));

 std::vector<std::vector<double> >::iterator it=test.begin(), end=test.end();
    while (it!=end) {
      std::vector<double>::iterator it1=it->first.begin(),end1=it->first.end();
      while (it1!=end1) {
    std::copy(it1.begin(),it1.end(),std::ostream_iterator<double>(std::cout, " "));
    ++it1;
      }
      ++it;
    }

これは私が得るコンパイルエラーです:

data.cpp:33:45: error: ‘class std::vector<double>’ has no member named ‘first’
data.cpp:33:68: error: ‘class std::vector<double>’ has no member named ‘first’
data.cpp:35:16: error: ‘class std::vector<double>::iterator’ has no member named ‘begin’
data.cpp:35:28: error: ‘class std::vector<double>::iterator’ has no member named ‘end’
data.cpp:35:34: error: ‘ostream_iterator’ is not a member of ‘std’
data.cpp:35:56: error: expected primary-expression before ‘double'

テストの内容を印刷できるように修正する方法に関する提案

4

2 に答える 2

2

コードには2つの問題があります。

最初 std::vectorsは含まないstd::pairsので、firstまたははありませんsecond

while (it!=end) {
  std::vector<double>::iterator it1=it->begin(),end1=it->end();

次に、への呼び出しstd::copyは範囲を取ります。これはおそらく内部ベクトルの1つに対応しているはずです。つまり、1レベル深くなりすぎます。

外側のベクトルを反復処理してから、その要素(ベクトル)ごとにをtest使用して印刷できます。copy

std::vector<std::vector<double>> test;
test.push_back(std::vector<double>(30));
std::vector<std::vector<double> >::iterator it=test.begin(), end=test.end();
for ( it!= end, ++it) {
  std::copy(it1-begin(),it->end(),std::ostream_iterator<double>(std::cout, " "));
}
于 2012-04-28T22:45:40.947 に答える
2

これはあなたが望むものだと思います。

std::vector<std::vector<double>> test;
// Put some actual data into the test vector of vectors
for(int i = 0; i < 5; ++i)
{
    std::vector<double> random_stuff;
    for(int j = 0; j < 1 + i; ++j)
    {
        random_stuff.push_back(static_cast<double>(rand()) / RAND_MAX);
    }
    test.push_back(random_stuff);
}

std::vector<std::vector<double> >::iterator it=test.begin(), end=test.end();
while (it!=end) 
{
    std::vector<double>::iterator it1=it->begin(),end1=it->end();
    std::copy(it1,end1,std::ostream_iterator<double>(std::cout, " "));
    std::cout << std::endl;
    ++it;
}

ベクトルにはペアが含まれていないため、最初は必要ありません。また、コピーに渡す範囲を示しているため、it1とend1に基づいてループする必要はありません。

于 2012-04-28T22:49:18.583 に答える