欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

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

时间:2021-04-30 10:13:08|栏目:JAVA代码|点击:
/** 
 * 快速计算二进制数中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;   
 } 
}

上一篇:详解JAVA常用的时间操作【实用】

栏    目:JAVA代码

下一篇:java中正则表达式实例详解

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

本文地址:http://www.codeinn.net/misctech/111928.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有