LeetCode 191. Number of 1 Bits
发布时间:2020-12-14 04:29:39 所属栏目:大数据 来源:网络整理
导读:分析 难度 易 来源 https://leetcode.com/problems/number-of-1-bits/ 题目 Write a function that takes an unsigned integer and returns the number of ‘1‘?bits it has (also known as the Hamming weight). Example 1: Input: 11 Output: 3 Explanati
分析 难度 易 来源 https://leetcode.com/problems/number-of-1-bits/ 题目 Write a function that takes an unsigned integer and returns the number of ‘1‘?bits it has (also known as the Hamming weight). Example 1: Input: 11 Output: 3 Explanation: Integer 11 has binary representation 00000000000000000000000000001011 Example 2: Input: 128 Output: 1 Explanation: Integer 128 has binary representation 00000000000000000000000010000000 解答 1 package LeetCode; 2 3 public class L191_NumberOf1Bits { 4 public int hammingWeight(int n) { 5 int result=0; 6 for(int i=0;i<32;i++){ 7 if (1==(n&1)) 8 result++; 9 n>>>=1; 10 } 11 return result; 12 } 13 public static void main(String[] args){ 14 L191_NumberOf1Bits l191=new L191_NumberOf1Bits(); 15 int n=11; 16 System.out.println(l191.hammingWeight(n)); 17 } 18 } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- Delphi FireMonkey 学习笔记 – TPopup 控件的使用
- delphi – 将文件添加到ZIP存档?
- Spring / Neo4J-impermanentGraphDatabase是否与事务注释兼
- delphi – 为什么编译器会为表单的字段说“未声明的标识符”
- java – 多个SessionFactories,多个DataSource和Hibernate
- 几种常用开发工具的比较(VB/PB/C++/VC/JAVA)
- 360补天漏洞平台漏洞挖掘入门视频课程
- delphi中TTreeView的使用方法
- VB6 IDE在更新KB 2687323后无法加载MSCOMCTL.OCX
- VB获取指定长度的随机字符串