MCPcopy Create free account
hub / github.com/ShahjalalShohag/code-library / g

Function g

Miscellaneous/Gray Code.cpp:4–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2using namespace std;
3
4int g (int n) {
5 return n ^ (n >> 1);
6}
7int rev_g (int g) {
8 int n = 0;
9 for (; g; g >>= 1)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected