-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNumberCompliment.java
73 lines (67 loc) · 2.37 KB
/
NumberCompliment.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
public class NumberCompliment {
public static void main(String[] args) {
System.out.println(findComplement(2147483647)); /** Expected Output : 0 */
System.out.println(findComplement2(2147483647)); /** Expected Output : 0 */
System.out.println(findComplement2(2147483646)); /** Expected Output : 1 */
}
/** Approach -1 :: Find the binary number for decimal and flip the bits.
*
* LeetCode stats:
* Runtime: 9 ms, faster than 7.23% of Java online submissions.
* Memory Usage: 37.5 MB, less than 11.11% of Java online submissions.
* */
public static int findComplement(int num) {
String binary = findBinaryForDecimal(num);
System.out.println(binary);
int compliment = findDecimalForBinaryCompliment(binary);
return compliment;
}
public static String findBinaryForDecimal(int num) {
if(num == 0) {
return "0";
}
String buffer = new String();
while (num > 0) {
int temp = num % 2;
num = num / 2;
buffer = temp + buffer;
}
return buffer;
}
public static int findDecimalForBinaryCompliment(String binary) {
int decimal = 0;
int power = binary.length() - 1;
for(int index = 0; index < binary.length(); index++) {
int temp = (binary.charAt(index) == '0') ? 1 : 0;
decimal += temp * Math.pow(2, power);
power--;
}
return decimal;
}
/** Approach - 2 :: Find the power of 2 that is just greater than element.
* How does that helps us? Think....Think.... It says the number of bits.
* So what next? Find max value i.e., 2^power - 1
* Ex: 10 -> 1010
* Our program finds power as 4. Max number with 4 bits is 15 i., 2^4 - 1.
* Next return max - number i.e., 15 - 10 => 5
*
* LeetCode stats:
* Runtime: 0 ms, faster than 100.00% of Java online submissions.
* Memory Usage: 36 MB, less than 11.11% of Java online submissions.
* */
public static int findComplement2(int num) {
/** Base case */
if(num == 0) {
return 1;
}
int temp = num;
int power = 0;
while (temp > 0) {
temp = temp / 2;
power++;
}
int max = (int)Math.pow(2, power-1);
max += max - 1;
return max - num;
}
}