博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【题解】【排列组合】【回溯】【Leetcode】Gray Code
阅读量:5937 次
发布时间:2019-06-19

本文共 932 字,大约阅读时间需要 3 分钟。

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 - 001 - 111 - 310 - 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.

思路:

这题其实挺简单,思路可以联想到组合问题中的回溯,改变第n位,然后再利用其余n-1位的组合重新组成n位的组合。如果在改变第n位的时候,保持其余n-1位不动,再保持第n位将其余n-1位的序列反着推回去就OK了。

感觉程序没有写出来的必要,举个栗子反而更清楚 n = 4

0 0 0 0
0 0 0 1
0 0 1 |1
0 0 1 |0

0 1 |1 0
0 1 |1 1
0 1 |0 1
0 1 |0 0

1 |1 0 0
1 |1 0 1
1 |1 1 1
1 |1 1 0

1 |0 1 0
1 |0 1 1
1 |0 0 1
1 |0 0 0

转载于:https://www.cnblogs.com/wei-li/p/GrayCode.html

你可能感兴趣的文章
我的友情链接
查看>>
虚拟化技术对比
查看>>
angular的编辑器tinymce
查看>>
mybatis之三:与spring集成
查看>>
Linux系统管理_基本权限和归属-Redhat Enterprise 5
查看>>
我的友情链接
查看>>
利用shell自动将异常IP加入iptables黑名单
查看>>
rsync 服务器片
查看>>
linux下文件同步利器rsync
查看>>
IOS 检测摇晃 几个问题
查看>>
【原创】ObjectARX SDK samples Progbar 例子学习笔记
查看>>
A function to help graphical model checks of lm and ANOVA(转)
查看>>
struts2中form的theme属性
查看>>
怎么解决BarTender因为未检测到IIS安装失败的问题
查看>>
HTML
查看>>
java基础/一个类A继承了类B,那么A就叫做B的派生类或子类,B就叫基类或超类。...
查看>>
洛谷 P3378 【模板】堆
查看>>
python基础知识4——collection类——计数器,有序字典,默认字典,可命名元组,双向队列...
查看>>
关于Handler与异步消息处理循环的摘抄
查看>>
[UOJ79]一般图最大匹配
查看>>