Gray Code
The gray code is a binary numeral system where the successive values are differ in only one bit.
Given a non-negative integer n representing the total number of bits in the code, print the sequence of gray code . A Gray code sequence must begin with 0.
For example, given n = 2, return [0,1,3,2]
. Its gray code sequence is:
00-001-111-310-2
Note:
For a given n, a gray code sequence is not uniquely defined.
For example, was [0,2,3,1]
also a valid gray code sequence according to the above definition.
For now, the judge are able to judge based on one instance of gray code sequence. Sorry about that.
The law of binary turn gray code is Graycode = (binary>>1) ^binary.
1 classSolution {2 Public:3vector<int> Graycode (intN) {4vector<int>result;5 if(n<0)returnresult;6UnsignedintMax_val=1<<N;7 for(intI=0; i<max_val;i++)8 {9 intGray_code = (i>>1)^i;Ten Result.push_back (gray_code); One } A returnresult; - } -};
[Leetcode] Gray Code