forked from anishLearnsToCode/leetcode-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FractionToRecurringDecimal.java
48 lines (38 loc) · 1.47 KB
/
FractionToRecurringDecimal.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
// https://leetcode.com/problems/fraction-to-recurring-decimal
// T: O(log(n / d)) but not sure, could use some mathematician's help
// S: O(log(n / d))
import java.util.HashMap;
import java.util.Map;
public class FractionToRecurringDecimal {
private static final String ZERO = "0";
public String fractionToDecimal(long numerator, long denominator) {
if (numerator == 0) return ZERO;
StringBuilder result = new StringBuilder();
result.append(isNegative(numerator, denominator) ? "-" : "");
numerator = Math.abs(numerator);
denominator = Math.abs(denominator);
// integral part
result.append(numerator / denominator);
numerator %= denominator;
if (numerator == 0) return result.toString();
// fractional part
result.append(".");
Map<Long, Integer> map = new HashMap<>();
map.put(numerator, result.length());
while (numerator != 0) {
numerator *= 10;
result.append(numerator / denominator);
numerator %= denominator;
if (map.containsKey(numerator)) {
int index = map.get(numerator);
result.insert(index, "(");
result.append(")");
break;
} else map.put(numerator, result.length());
}
return result.toString();
}
private boolean isNegative(long numerator, long denominator) {
return (numerator > 0) ^ (denominator > 0);
}
}