In my code, I have to consider an array of arrays, where the inner arrays are of a fixed dimension. In order to make use of STL algorithms, it is useful to actually store the data as array of arrays, but I also need to pass that data to a C library, which takes a flattened C-style array.
It would be great to be able to convert (i.e. flatten) the multi-dimensional array cheaply and in a portable way. I will stick to a very simple case, the real problem is more general.
struct my_inner_array { int data[3]; };
std::vector<my_inner_array> x(15);
Is
&(x[0].data[0])
a pointer to a continuous block of memory of size 45*sizeof(int) containing the same entries as x? Or do I have to worry about alignment? I am afraid that this will work for me (at least for certain data types and inner array sizes) but that it is not portable.
- Is this code portable?
- If not, is there a way to make it work?
- If not, do you have any suggestions what I could do?
- Does it change anything at all if my_inner_array is not a POD struct, but contains some methods (as long as the class does not contain any virtual methods)?
std::transform(coord.begin(), coord.end(), values.begin(), adapt(f))whereadapt(f)returns a functor that fetches the begin and end parts of the element ranges to feed them tof(assuming it can be written to write with pairs of iterators and not just arrays to begin with). Or perhaps you can write a genericfthat can deal with that itself. If you use something like Boost.Range then you don't need theadaptstep either. – Luc Danton Apr 11 '12 at 11:21