您的位置:首页 > 其它

LeetCode - Gray Code

2013-12-27 02:28 381 查看
Gray Code

2013.12.27

The gray code is a binary numeral system where two successive values 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 - 0
01 - 1
11 - 3
10 - 2


Note:
For a given n, a gray code sequence is not uniquely defined.

For example,
[0,2,3,1]
is also a valid gray code sequence according to the above definition.

For now, the judge is able to judge based on one instance of gray code sequence. Sorry about that.

Solution:

  I remember first hearing the term "Gray code" in discrete mathematics class. It's a special kind of signaling, with every pair of adjacent codes having only one bit of variation. The Taichi Bagua in ancient Chinese culture is an interesting example of Gray code.

  To generate a set of valid gray code, you can follow the process below:

    1. You have an empty signal at first, [""]

    2. You add 0 and 1 to it, ["0", "1"]

    3. You put them together, with the second half in reversed order: ["0", "1", "1", "0"]

    4. Add 0 to the first half, and 1 to the second half: ["00", "01", "11", "10"]

  Guess you've already figured it out. If A
is a valid Gray code sequence of size n, it would stil be valid sequence if reversed. You just make sure you can put A
and inv(A
)
together to create an A[n + 1]. That's how you build a Gray code sequence of any size.

  Time complexity is O(2^n), as there're 2^n Gray codes in length n. Space compelxity is O(2^n), as each iteration needs space to hold the intermediate result.

Accepted code:

// 1CE 2WA 1AC, you fool..
// Too careless!!!
class Solution {
public:
vector<int> grayCode(int n) {
// IMPORTANT: Please reset any member data you declared, as
// the same Solution instance will be reused for each test case.
vector<int> res1, res2;
res1.clear();
res2.clear();

if(n < 0){
return res1;
}

int nn = 1 << n;
int i, j;

res1.push_back(0);
for(i = 1; i <= n; ++i){
nn = 1 << (i - 1);
for(j = 0; j < nn; ++j){
res2.push_back(res1[j]);
}
for(j = nn - 1; j >= 0; --j){
res2.push_back(nn + res1[j]);
}
res1 = res2;
res2.clear();
}

return res1;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: