Skip to content

Instantly share code, notes, and snippets.

@sausheong
Last active March 19, 2022 00:46
Show Gist options
  • Save sausheong/be5d28f093150be072b15c731e5e88cc to your computer and use it in GitHub Desktop.
Save sausheong/be5d28f093150be072b15c731e5e88cc to your computer and use it in GitHub Desktop.
ds
func parent(i int) int {
return (i - 1) / 2
}
func leftChild(i int) int {
return 2*i + 1
}
func rightChild(i int) int {
return 2*i + 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment