Files
2020-08-07 17:06:53 +08:00

47 lines
1.5 KiB
Markdown
Executable File
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# [89. Gray Code](https://leetcode.com/problems/gray-code/)
## 题目
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.
**Example 1:**
Input: 2
Output: [0,1,3,2]
Explanation:
00 - 0
01 - 1
11 - 3
10 - 2
For a given n, a gray code sequence may not be uniquely defined.
For example, [0,2,3,1] is also a valid gray code sequence.
00 - 0
10 - 2
11 - 3
01 - 1
**Example 2:**
Input: 0
Output: [0]
Explanation: We define the gray code sequence to begin with 0.
A gray code sequence of n has size = 2n, which for n = 0 the size is 20 = 1.
Therefore, for n = 0 the gray code sequence is [0].
## 题目大意
格雷编码是一个二进制数字系统,在该系统中,两个连续的数值仅有一个位数的差异。给定一个代表编码总位数的非负整数 n打印其格雷编码序列。格雷编码序列必须以 0 开头。
## 解题思路
- 输出 n 位格雷码
- 格雷码生成规则以二进制为0值的格雷码为第零项第一次改变最右边的位元第二次改变右起第一个为1的位元的左边位元第三、四次方法同第一、二次如此反复即可排列出 n 个位元的格雷码。
- 可以直接模拟,也可以用递归求解。