-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCountOnesInBinaryForm.java
55 lines (52 loc) · 1.42 KB
/
CountOnesInBinaryForm.java
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package by.andd3dfx.numeric;
/**
* <pre>
* <a href="https://leetcode.com/problems/number-of-1-bits/description/">Task description</a>
*
* Write a function that takes the binary representation of a positive integer and returns
* the number of set bits it has (also known as the Hamming weight).
*
* Example 1:
* Input: n = 11
* Output: 3
* Explanation:
* The input binary string 1011 has a total of three set bits.
*
* Example 2:
* Input: n = 128
* Output: 1
* Explanation:
* The input binary string 10000000 has a total of one set bit.
*
* Example 3:
* Input: n = 2147483645
* Output: 30
* Explanation:
* The input binary string 1111111111111111111111111111101 has a total of thirty set bits.
* </pre>
*
* @see <a href="https://youtu.be/F8zwvJYw0R8">Video solution</a>
*/
public class CountOnesInBinaryForm {
/**
* 0b100011 -> 0b10001 -> 0b1000 -> 0b100 -> ... -> 0
*/
public static int count_usingBitwiseAnd(int num) {
int result = 0;
while (num > 0) {
if ((num & 1) == 1) {
result++;
}
num = num >> 1;
}
return result;
}
public static int count_usingDivisionRemainder(int num) {
int result = 0;
while (num > 0) {
result += num % 2;
num = num >> 1;
}
return result;
}
}