-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFractionToRecurringDecimal.cpp
More file actions
45 lines (45 loc) · 1.48 KB
/
FractionToRecurringDecimal.cpp
File metadata and controls
45 lines (45 loc) · 1.48 KB
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
/**
* convert int to long, because of edge cases:[1,214748364],[-1,214748364],[1,-214748364],[-1,-214748364]
* judge the result if negative or positive;
* if it is negative, confirm that the factor is -0;
* if the same remainder occures again, fractional part starts repeating
*/
class Solution {
public:
string fractionToDecimal(int numerator, int denominator) {
long longDenominator = (long)denominator;
long factor = numerator / longDenominator;
long remainder = abs(numerator % longDenominator);
string result;
if(numerator * longDenominator < 0 && factor == 0){
result = "-0";
}else{
result = std::to_string(factor);
}
if(remainder == 0){
return result;
}
result += '.';
longDenominator = abs(longDenominator);
unordered_map<int,int> valueIndexMap;
int index = result.size();
int repeatIndex = 0;
while(true){
valueIndexMap[remainder] = index;
remainder *= 10;
factor = remainder / longDenominator;
remainder %= longDenominator;
result += std::to_string(factor);
if(remainder == 0){
return result;
}
repeatIndex = valueIndexMap[remainder];
if(repeatIndex){
result.insert(repeatIndex,"(");
result += ')';
return result;
}
index++;
}
}
};