If I only know an element index, and the dimensions and storage order of an array, is it possible to find out the i,j,k triplet corresponding to that index?

Thanks

link|improve this question

69% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Yes, it's possible.

k = index % kDimension;
j = (index / kDimension) % jDimension
i = (index / kDimension) / jDimension

We can test this by reconstructing the index:

index = i * (jDimension * kDimension)
      + j * kDimension
      + k

And noting that it gives the same result (when you take integer rounding into account).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.