首页 > 其他 > 详细

求32位整数含1的个数

时间:2020-09-12 22:59:00      阅读:53      评论:0      收藏:0      [点我收藏+]
#include<iostream>
#include<string>
#include<string.h>
#include<stack>
#include<queue>
#include<map>
#include<set>
#include<algorithm>
#include<memory>
#include<vector>
#define ll long long
using namespace std;
const int N = 100050;
string s;
int find1(ll n) {
    int x = 1, cnt = 0;
    while (x) {//最多循环32次,循环结束
        if (x&n) {
            cnt++;
        }
        x = x << 1;
    }
    return cnt;
}
int find2(ll n)
{
    int cnt = 0;
    while (n != 0) {
        n &= (n - 1);
        cnt++;
    }
    return cnt;
}
int main() {
    int n;
    cin >> n;
    cout << find2(n) << endl;
    system("pause");
    return 0;
}

 

求32位整数含1的个数

原文:https://www.cnblogs.com/-citywall123/p/13658473.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!