Is there a built in Gray code datatype anywhere in the .NET framework? Or conversion utility between Gray and binary? I could do it myself, but if the wheel has already been invented...
|
feedback
|
|
Use this trick.
A tricky Trick: for up to 2^n bits, you can convert Gray to binary by performing (2^n) - 1 binary-to Gray conversions. All you need is the function above and a 'for' loop.
| ||||
|
feedback
|
|
Here is a C# implementation that assumes you only want to do this on non-negative 32-bit integers:
You might also like to read this blog post which provides methods for conversions in both directions, though the author chose to represent the code as an array of | |||
|
feedback
|