Skip to content

Instantly share code, notes, and snippets.

@luccasiau
Created May 17, 2015 17:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luccasiau/3fce2d14aec1c548903e to your computer and use it in GitHub Desktop.
Save luccasiau/3fce2d14aec1c548903e to your computer and use it in GitHub Desktop.
int pai(int i){
return i/2;
}
int esquerda(int i){
return 2*i;
}
int direita(int i){
return 2*i+1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment