博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
89. Gray Code
阅读量:5329 次
发布时间:2019-06-14

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

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.

vector
grayCode02(int n) { vector
ret; int size = 1 << n; for(int i = 0; i < size; ++i) { ret.push_back((i >> 1)^i); } return ret; }

* Please refer to http://en.wikipedia.org/wiki/Gray_code

转载于:https://www.cnblogs.com/argenbarbie/p/5340067.html

你可能感兴趣的文章
自卑都是自己不踏实做事的表现
查看>>
C# 网页自动填表自动登录 .
查看>>
netfilter 和 iptables
查看>>
洛谷P1005 矩阵取数游戏
查看>>
Django ORM操作
查看>>
Problem Collection II 构造
查看>>
用swift写的一款小游戏,模仿的僵尸危机
查看>>
2018暑假第二周总结(7.16-7.22)
查看>>
Java_学生信息管理系统——数组版——初次编写
查看>>
2012年最佳30款免费 WordPress 主题
查看>>
在Silverlight中使用HierarchicalDataTemplate为TreeView实现递归树状结构
查看>>
HDU-1150 Machine Schedule 二分图匹配
查看>>
单例模式的5种写法
查看>>
安卓问题报告小记(四):Some projects cannot be imported because they already exist in the workspace...
查看>>
显示地图
查看>>
无线通信基础(一):无线网络演进
查看>>
VC++ 6.0 快捷键
查看>>
如何在工作中快速成长?阿里资深架构师给工程师的10个简单技巧
查看>>
一:MySQL数据库的性能的影响分析及其优化
查看>>
java之数组
查看>>