7

我有以下包含O(N)元素的稀疏矩阵

boost::numeric::ublas::compressed_matrix<int> adjacency (N, N);

我可以编写一个蛮力双循环来及时检查所有条目,O(N^2)如下所示,但这太慢了。

for(int i=0; i<N; ++i)
   for(int j=0; j<N; ++j)
       std::cout << adjacency(i,j) std::endl;

如何及时循环仅非零条目O(N)?对于每个非零元素,我想访问它的值和索引i,j

4

1 回答 1

15

您可以在这个常见问题解答中找到答案:如何迭代所有非零元素?

在您的情况下,它将是:

typedef boost::numeric::ublas::compressed_matrix<int>::iterator1 it1_t;
typedef boost::numeric::ublas::compressed_matrix<int>::iterator2 it2_t;

for (it1_t it1 = adjacency.begin1(); it1 != adjacency.end1(); it1++)
{
  for (it2_t it2 = it1.begin(); it2 != it1.end(); it2++)
  {
    std::cout << "(" << it2.index1() << "," << it2.index2() << ") = ";
    std::cout << *it2 << std::endl;
  }
}
于 2009-12-07T08:47:49.747 回答