Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
2
using namespace std;
3
4
int g (int n) {
5
return n ^ (n >> 1);
6
}
7
int 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