Skip to content

Instantly share code, notes, and snippets.

@changkun
Created September 28, 2018 07:31
Show Gist options
  • Select an option

  • Save changkun/bc7f43585030a1dc6f133121384f062e to your computer and use it in GitHub Desktop.

Select an option

Save changkun/bc7f43585030a1dc6f133121384f062e to your computer and use it in GitHub Desktop.
log2 for int
// stacklog2 returns ⌊log_2(n)⌋.
func stacklog2(n uintptr) int {
log2 := 0
for n > 1 {
n >>= 1
log2++
}
return log2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment