leetcode 每日一题 89. 格雷编码

Posted nil_f

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 每日一题 89. 格雷编码相关的知识,希望对你有一定的参考价值。

找规律

思路:

格雷编码生成过程,G(i) = i ^ (i/2)

例如:

n = 3:

G(0) = 000,

G(1) =  1 ^ 0 = 001 ^ 000 = 001

G(2) = 2 ^ 1 = 010 ^ 001 = 011

G(3) = 3 ^ 1 = 011 ^ 001 = 010

G(4) = 4 ^ 2 = 100 ^ 010 = 110

G(5) = 5 ^ 2 = 101 ^ 010 = 111

G(6) = 6 ^ 3 = 110 ^ 011 = 101

G(7) = 7 ^ 3 = 111 ^ 011 = 100

代码:

class Solution:
    def grayCode(self, n: int) -> List[int]:
        return [i ^ i >> 1  for i in range(2 ** n)]

 

以上是关于leetcode 每日一题 89. 格雷编码的主要内容,如果未能解决你的问题,请参考以下文章

[LeetCode] 89. 格雷编码

leetcode-89-格雷编码

leetcode(js)算法89之格雷编码

Leetcode No.89 格雷编码(DFS)

Leetcode No.89 格雷编码(DFS)

LeetCode 89 格雷编码[异或 数学] HERODING的LeetCode之路