码迷,mamicode.com
首页 > 其他好文 > 详细

【剑指offer】面试题 15. 二进制中 1 的个数

时间:2018-05-12 22:33:52      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:试题   方法   turn   public   while   负数   off   mingw   solution   

面试题 15. 二进制中 1 的个数


题目描述

    题目:输入一个整数,输出该数二进制表示中1的个数。其中负数用补码表示。

代码实现

  • 方法一

    public class Solution {
        // you need to treat n as an unsigned value
        public int hammingWeight(int n) {
            int count=0;
            while(n!=0){
                count+=(n&1);
                n=n>>>1;
            }
            return count;
        }
    }
  • 方法二

    public class Solution {
        // you need to treat n as an unsigned value
        public int hammingWeight(int n) {
            int count = 0;
            while(n!=0){
                n = n&(n-1);
                count++;
            }
            return count;
        }
    }

【剑指offer】面试题 15. 二进制中 1 的个数

标签:试题   方法   turn   public   while   负数   off   mingw   solution   

原文地址:https://www.cnblogs.com/hglibin/p/9030049.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!