博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2.1二进制数中1的个数
阅读量:4973 次
发布时间:2019-06-12

本文共 446 字,大约阅读时间需要 1 分钟。

1 #include 
2 using namespace std; 3 4 #include
5 #include
6 7 int Count(u_int32_t n) 8 {
9 int count = 0; 10 while (n) { 11 ++count; 12 n = n & (n - 1); 13 } 14 return count; 15 } 16 17 int main() 18 {
19 cout << Count(128) << endl; 20 21 return 0; 22 }

转载于:https://www.cnblogs.com/tzhangofseu/archive/2011/10/21/2220143.html

你可能感兴趣的文章
laravel5.2 移植到新服务器上除了“/”路由 ,其它路由对应的页面显示报404错误(Object not found!)———新装的LAMP没有加载Rewrite模块...
查看>>
编写高质量代码--改善python程序的建议(六)
查看>>
windows xp 中的administrator帐户不在用户登录内怎么解决?
查看>>
接口和抽象类有什么区别
查看>>
Codeforces Round #206 (Div. 2)
查看>>
**p
查看>>
优先队列详解
查看>>
VS2012 创建项目失败,,提示为找到约束。。。。
查看>>
设计类图
查看>>
类对象
查看>>
[Voice communications] 声音的滤波
查看>>
SQL语言之概述(一)
查看>>
数据库表 copy
查看>>
LinkedList源码解析
查看>>
SignalR循序渐进(一)简单的聊天程序
查看>>
MyServer
查看>>
Learning Cocos2d-x for XNA(2)——深入剖析Hello World
查看>>
软件建模——第9章 毕业论文管理系统—面向对象方法
查看>>
Http协议
查看>>
[SDOI2008]洞穴勘测
查看>>