I have a large number of points (indexed by long) that are processed by multiple threads and I'm using a buffer to hold the output results in order. As the number of points processed is huge, what would be an efficient way to map the indexes of the points to the corresponding ordered position in the buffer ?

Example:

long           bufferIndex         bufferIndex     
index     (if BufferSize = 2)    (if BufferSize = 4)
----------------------------------------------
2938               0                   0
2939               1                   1
2941               1                   3
2940               0                   2

Thanks.

link|improve this question

71% accept rate
2  
Are you looking for the modulo operator (%) with an offset? msdn.microsoft.com/en-us/library/0w4e0fzs(v=vs.80).aspx – Ani Jan 11 '11 at 16:51
I thought about (longIndex % BufferSize) but that doesn't work for some values of BufferSize – alhazen Jan 11 '11 at 16:54
2  
Do you really think there is enough information / example in the question? – Henk Holterman Jan 11 '11 at 17:04
I would have to agree with both Ani and Henk. From my understanding of what you have written, modulo should work. You should add more details to your question and expand upon why you think modulo won't work. Some sample code would be nice too. – csauve Jan 11 '11 at 17:57
What would be the offset to the modulo operator in the case where BufferSize = 4 ? – alhazen Jan 12 '11 at 17:13
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.