how to traverse a boost::multi_array

落花浮王杯 提交于 2019-12-17 16:26:35

问题


I have been looking into the boost::multi_array library in search of an iterator that allows you to traverse the whole multi_array in a single for loop.

I don't think there is any such iterator in that library. (The iterators that are found there let you traverse a single dimension of the multi_array)

Am I wrong?
If not, is there any library that defines such an iterator?

Entering into details, I'd like to write something like:

boost::multi_array< double, 3 > ma(boost::extents[3][4][2]);  

for( my_iterator it = ma.begin(); it != ma.end(); ++it )  
{  
    // do something  
    // here *it has element type (in this case double)  
}  

and obtain a loop that repeats 3x4x2 times


回答1:


You can use an implementation of std::for_each from <algorithm> to access each individual element. There is an example in the Boost documentation

Alternatively, you can use array::origin() and array::num_elements() as follows:

boost::multi_array< double, 3 > ma(boost::extents[3][4][2]);  

for(auto i = ma.origin(); i < (ma.origin() + ma.num_elements()); ++i)  
{  
    // do something with i
}  


来源:https://stackoverflow.com/questions/5572464/how-to-traverse-a-boostmulti-array

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!