摘要: package mainimport ( "fmt")// pc[i] is the population count of i.var pc [256]bytefunc init() { for i := range pc { pc[i] = pc[i/2] + byte(i&1) }}func 阅读全文
posted @ 2018-07-15 16:51 c碰 阅读(1135) 评论(0) 推荐(0) 编辑