Skip to content

Instantly share code, notes, and snippets.

@mengzhuo
Created August 31, 2014 15:40
Show Gist options
  • Save mengzhuo/5d4894cdd3bf342472e1 to your computer and use it in GitHub Desktop.
Save mengzhuo/5d4894cdd3bf342472e1 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# encoding: utf-8
def binary2grey(n):
return n >> 1 ^ n
def grey2binary(g):
mask = g >> 1
while mask:
g = g ^ mask
mask = mask >> 1
return g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment