vote up 6 vote down star
1

Duplicate of Weird Objective-C Mod Behavior

I'm trying to mod an integer to get an array position so that it will loop round. Doing i % arrayLength works fine for positive numbers but for negative numbers it all goes wrong.

so i need an implementation of

int GetArrayIndex(int i, int arrayLength)

such that

GetArrayIndex(-4, 3) == 2
GetArrayIndex(-3, 3) == 0
GetArrayIndex(-2, 3) == 1
GetArrayIndex(-1, 3) == 2
GetArrayIndex( 0, 3) == 0
GetArrayIndex( 1, 3) == 1
GetArrayIndex( 2, 3) == 2
GetArrayIndex( 3, 3) == 0
GetArrayIndex( 4, 3) == 1

I've done this before but for some reason it's melting my brain today :(

flag
Not sure why you'd want to index it with negative numbers, but can't you jsut take the absolute value of i ? absIi)%arrayLen – nos Jul 4 at 20:27
@noslasd, no that wouldn't work. – Nosredna Jul 4 at 20:33
Which language is this? – jalf Jul 4 at 20:34

3 Answers

vote up 0 vote down

I asked this question (but can't take charge of it I'm afraid). Its a c# question

I'm looking for a solution where I DONT add arrayLength before modding, as that doesn't work for increasingly large negative numbers. Heres a little linqpad script showing the issue

edit: ShreevatsaR shsould get the points - can an admin grant them?

link|flag
ShreevatsaR's second solution fits the bill, then. – hythlodayr Jul 4 at 20:45
1  
So does the first! The two have identical output (assuming m is positive, of course). – ShreevatsaR Jul 4 at 20:46
vote up 15 vote down

I always use my own mod function, defined as

int mod(int x, int m) {
    return (x%m + m)%m;
}

Of course, if you're bothered about having two calls to the modulus operation, you could write it as

int mod(int x, int m) {
    int r = x%m;
    return r<0 ? r+m : r;
}

or variants thereof.

The reason it works is that "x%m" is always in the range [-m+1, m-1]. So if at all it is negative, adding m to it will put it in the positive range without changing its value modulo m.

link|flag
Note: for complete number-theoretic completeness, you might want to add a line at the top saying "if(m<0) m=-m;" although in this case it doesn't matter as "arrayLength" is presumably always positive. – ShreevatsaR Jul 4 at 20:47
If you are going to check the value of m, you should also exclude zero. – billpg Aug 25 at 9:52
vote up 2 vote down

Just add your modulus (arrayLength) to the negative result of % and you'll be fine.

link|flag

Your Answer

Get an OpenID
or

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