Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
17answers
2k views

Code Golf: Gray Code

The Challenge The shortest program by character count that outputs the n-bit Gray Code. n will be an arbitrary number smaller than 1000100000 (due to user suggestions) that is taken from standard ...
9
votes
3answers
374 views

How do I find next bit to change in a Gray code in constant time?

I have a small 8-bit processor which has a N-to-M decoder on some output lines - eg, for the 5 to 32 bit case, I write 00101 and bit 5 changes state. The only interface to the output is change-state, ...
4
votes
4answers
373 views

the nth gray code

the formula for calculating nth gray code is : (n-1) XOR (floor((n-1)/2)) (Source: wikipedia) I encoded it as: int gray(int n) { n--; return n ^ (n >> 1); } Can someone explain how ...
3
votes
2answers
372 views

Gray code in .NET

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...
2
votes
2answers
225 views

Does Gray code exist for other bases than two?

Just a matter of curiosity, is the Gray code defined for bases other than base two? I tried to count in base 3, writing consecutive values paying attention to change only one trit at a time. I've ...
1
vote
1answer
72 views

Gray code pattern in tournament chart?

In a tournament chart from the bottom to the top where there is a winner I've been told that it is somehow connected with the gray-code. I know that the grey code is an alternative code, it's ...
0
votes
1answer
63 views

Generate a powerset with the help of a binary represenation

I know that "a powerset is simply any number between 0 and 2^N-1 where N is number of set members and one in binary presentation denotes presence of corresponding member". (Hynek -Pichi- Vychodil) I ...
0
votes
0answers
29 views

Let g3 g2 g1 g0 be the gray code of (n + 1) (modulo 16) value of the number. Which one of the following functions is correct?

Consider numbers represented in 4-bit gray code. Let h3 h2 h1 h0 be the gray code representation of a number n and let g3 g2 g1 g0 be the gray code of (n + 1) (modulo 16) value of the number. Which ...
0
votes
1answer
460 views

Convert a character array of binary numbers into a counter of Gray Code in C++

is there any way to convert a char array of binary number into Gray Code. For example, I have the following code: int j; char binaryNum[10], *pointer; /* From Hex convert to decimal */ j = strtol( ...
0
votes
2answers
2k views

Assembly 8086: Converting 8-bit binary number to its Gray number equivalent?

Problem: Write a program to convert an 8-bit binary number entered from the keyboard to the equivalent Gray code binary number, using the following the algorithm: [broken image: ...
-1
votes
1answer
329 views

write a 8086 program to conver binary to gray code representation

write a 8086 program to conver binary to gray code representation.