vote up 7 vote down star
2

Hi

I am looking for C# equivalent (.Net 2) of _rotl and _rotr from c++.

Any ideas ?

Thanks,

flag

56% accept rate

3 Answers

vote up 5 vote down check

Is this what you are trying to do?

Jon Skeet answered this in another site

Basically what you want is

(for left)

(original << bits) | (original >> (32 -bits))

or

(for right)

(original >> bits) | (original << (32 -bits))

Also, as Mehrdad has already suggested, this only works for uint, which is the example that Jon gives as well.

link|flag
i have tried this but it is not procducing the right result. FOR c++ if original =1192314641 outout of _roti(1192314641,3) = 948582538 For C# Using above formula output = 948582536 – Prithis May 1 at 16:17
@Prithis I just ran a test on it myself and I got 948582538 in C# – Joseph May 1 at 16:22
ignore me it is working. Thanks – Prithis May 1 at 16:22
This works correctly only if original is uint. Note that Jon Skeet does it with uint. – Mehrdad Afshari May 1 at 16:26
@Merhdad Thanks I updated answer to reflect. – Joseph May 1 at 16:29
show 1 more comment
vote up 1 vote down

The naive version of shifting won't work. The reason is, right shifting signed numbers will fill the left bits with sign bit, not 0:

You can verify this fact with:

Console.WriteLine(-1 >> 1);

The correct way is:

public static int RotateLeft(this int value, int count)
{
    uint val = (uint)value;
    return (int)((val << count) | (val >> (32 - count)));
}

public static int RotateRight(this int value, int count)
{
    uint val = (uint)value;
    return (int)((value >> count) | (value << (32 - count)));
}
link|flag
or you could change the extension method to bring in a uint and return a uint, which is what Jon did – Joseph May 1 at 16:24
@Joseph: In that case, you should do the cast manually when you call with an int. – Mehrdad Afshari May 1 at 16:27
Yeah, it would make more sense for the function just to take/return uint (that's what I've done in my updated post too). Otherwise, if you actually want to rotate a uint, you'd be casting 4 times when you don't in fact need to do any! – Noldorin May 1 at 16:28
@Mehrdad That's correct, but I wasn't assuming it was an int to begin with. – Joseph May 1 at 16:31
Noldorin: You could create a set of extension methods for uint to. Anyway, it doesn't really matter much. These casts won't matter at the level of native code. It's not like that JIT generates instructions to do the cast. CPU doesn't really care :) – Mehrdad Afshari May 1 at 16:32
show 3 more comments
vote up 6 vote down

There's no built-in language feature for bit rotation in C#, but these extension methods should do the job:

public static uint RotateLeft(this uint value, int count)
{
    return (value << count) | (value >> (32 - count))
}

public static uint RotateLeft(this uint value, int count)
{
    return (value >> count) | (value << (32 - count))
}

Note: As Mehrdad points out, right-shift (>>) for signed integers is a peculiarity: it fills the MSBs with sign bit rather than 0 as it does for unsigned numbers. I've now changed the methods to take and return uint (unsigned 32-bit integer) instead - this is also in greater accordance with the C++ rotl and rotr functions. If you want to rotate integers, just case them before passing, and again cast the return value, of course.

Example usage:

int foo1 = 8.RotateRight(3); // foo1 = 1
int foo2 = int.MinValue.RotateLeft(3); // foo2 = 4

(Note that int.MinValue is 111111111111111111111111 - 32 1s in binary.)

link|flag
1  
That's a shift, not rotate! – Mehrdad Afshari May 1 at 16:09
@Mehrdad: Yeah, just realised that as I posted. Fixed now. :) – Noldorin May 1 at 16:13
1  
I think this will fail for negative numbers. You probably want to force the values to be unsigned. – plinth May 1 at 16:15
@plinth: It won't fail. The bitwise operations work exactly the same for signed and unsigned numbers, only that the number represented by signed ints can change sign during bit shifting/rotation because of the two's complement system. – Noldorin May 1 at 16:17
Noldorin: Wrong. won't work due to how right shift works. – Mehrdad Afshari May 1 at 16:19
show 4 more comments

Your Answer

Get an OpenID
or

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