因为golang的int是无限精度的,c++的int是32位的,所以golang的负数相当于前面有无限个1,要对golang的负数做处理.
func NumberOf1( n int ) int { // write code here cnt := 0 if n < 0 { n = n & 0xffffffff } for n != 0 { n = n & (n - 1) cnt++ } return cnt }
原文:https://www.cnblogs.com/dingxiaoqiang/p/14630102.html