vote up 10 vote down star
2

I know that the following is true

int i = 17; //binary 10001
int j = i << 1; //decimal 34, binary 100010

But, if you shift too far, the bits fall off the end. Where this happens is a matter of the size of integer you are working with.

Is there a way to perform a shift so that the bits rotate around to the other side? I'm looking for a single operation, not a for loop.

flag

62% accept rate
Where would an operation of this type be used? What is the purpose behind doing a Bit Rotate? I don't need to know, but am just interested in ever expanding knowledge. Keith – Keith Sirmons Oct 7 '08 at 14:32
a very good question. I just checked the generated code and the C# compiler doesn't generate code that uses the rotate instructions of the CPU (not that the x86 architecture has them since the 8086...). This is a shame. C does this optimization. Also rotations are very important for crypto and dsp tasks. – Nils Pipenbrinck Jun 8 at 1:45

6 Answers

vote up 16 vote down check

If you know the size of type, you could do something like:

uint i = 17;
uint j = i << 1 | i >> 15;

... which would perform a circular shift of a 16 bit value.

As a generalization to circular shift left n bits, on a b bit variable:

var input = 17;
var result = i << n | i >> (b - n);


@The comment, it appears that C# does treat the high bit of signed values differently. I found some info on this here. I also changed the example to use a uint.

link|flag
Since I don't know C#, are the shift operators doing arithmetic or logic shifts? If arithmetic, then this algorithm can't be used for 64-bit signed integers. – ΤΖΩΤΖΙΟΥ Oct 6 '08 at 15:20
So perhaps both the 'int' and 'var' types should be prefixed with an 'unsigned' modifier, of course if C# allows that. – ΤΖΩΤΖΙΟΥ Oct 6 '08 at 15:21
Thanks for catching that. – Chris Marasti-Georg Oct 6 '08 at 17:26
Well, rotation of bits only makes sense with unsigned integers anyway. – Lasse V. Karlsen Aug 5 at 12:37
vote up 0 vote down

I have to admit, I just did a search for "C# bit rotate" and found a link to a page with a Java class that would be easily adapted to C#

I also found this in Google Book which is a C++ function with similar behavior

link|flag
vote up 5 vote down

Chris's answer is good, and I won't add to it.

To answer Keith's question, word rotations have a lot of uses, especially in cryptography. Have a look at various message digest algorithms, such as MD5, or the SHA family, for starters.

link|flag
vote up -1 vote down

@Keith Sirmons,

I believe (don't quote me on it) that this might have some application in cryptography. Basically any situation where you want a reversible operation performed on data. Doing a regular bit shift causes a loss of data when bits fall off the end.

Personally, I was experimenting with encoding a list of 8-8bit integers in a single Int64 variable and rotating the list. Rather than the traditional 9 operations (store the first element, move 7 items, restore temp to the end of the list), it is now one operation. Not entirely useful for day-to-day stuff, but I wanted to see if it could be done quicker.

link|flag
Jason, interesting application of the concept. Did you consider also maintaining a "pointer" into the list, representing the first integer, and just moving that around to achieve the same sort of affect? – Chris Marasti-Georg Sep 18 '08 at 20:12
Chris, I guess that would be a simple implementation of a circular list, wouldn't it? Hadn't considered it. I believe I was interested in an optimal solution, both in terms of time and space. A pointer would be 32 bits (or 64), taking half the size of the list to store the pointer. – Jason Z Sep 18 '08 at 20:25
vote up 1 vote down

One year ago I've to implement MD4 for my undergraduate thesis. Here it is my implementation of circular bit shift using a UInt32.

private UInt32 RotateLeft(UInt32 x, Byte n)
{
      return (UInt32)(((x) << (n)) | ((x) >> (32 - (n))));
}
link|flag
vote up 0 vote down

Just as reference on how to do it, this two functions work perfectly for rotating the bits of 1/2word:

static public uint ShiftRight(uint z_value, int z_shift)
{
    return ((z_value >> z_shift) | (z_value << (16 - z_shift))) & 0x0000FFFF;
}

static public uint ShiftLeft(uint z_value, int z_shift)
{
    return ((z_value << z_shift) | (z_value >> (16 - z_shift))) & 0x0000FFFF;
}

It would be easy to extend it for any given size.

link|flag

Your Answer

Get an OpenID
or

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