服务器之家

服务器之家 > 正文

Java数据结构及算法实例:快速计算二进制数中1的个数(Fast Bit Counting)

时间:2019-12-23 15:30     来源/作者:junjie
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
 * 快速计算二进制数中1的个数(Fast Bit Counting)
 * 该算法的思想如下:
 * 每次将该数与该数减一后的数值相与,从而将最右边的一位1消掉
 * 直到该数为0
 * 中间循环的次数即为其中1的个数
 * 例如给定"10100“,减一后为”10011",相与为"10000",这样就消掉最右边的1
 * Sparse Ones and Dense Ones were first described by Peter Wegner in
 * “A Technique for Counting Ones in a Binary Computer“,
 * Communications of the ACM, Volume 3 (1960) Number 5, page 322
 */
package al;
public class CountOnes {
 public static void main(String[] args) {
  int i = 7;
  CountOnes count = new CountOnes();
  System.out.println("There are " + count.getCount(i) + " ones in i");
 }
 /**
  * @author
  * @param i 待测数字
  * @return 二进制表示中1的个数
  */
 public int getCount(int i) {  
  int n;
  for(n=0; i > 0; n++) {
   i &= (i - 1);
  }  
  return n;  
 }
}

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
配置IIS网站web服务器的安全策略配置解决方案
配置IIS网站web服务器的安全策略配置解决方案 2019-05-23
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
Nginx服务器究竟是怎么执行PHP项目
Nginx服务器究竟是怎么执行PHP项目 2019-05-24
返回顶部