function NumberOf1(n) { var count = 0; while(n != 0){ count++; n = n&(n-1); } return count; }
暂无评论,快来抢首评~
相关推荐