forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_592.java
65 lines (55 loc) · 2.03 KB
/
_592.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
package com.fishercoder.solutions;
import java.util.ArrayList;
import java.util.List;
public class _592 {
public static class Solution1 {
/**
* Credit: https://discuss.leetcode.com/topic/89993/java-solution-fraction-addition-and-gcd
*/
public String fractionAddition(String expression) {
List<String> nums = new ArrayList<>();
int i = 0;
int j = 0;
while (j <= expression.length()) {
if (j == expression.length() || j != i && (expression.charAt(j) == '-' || expression.charAt(j) == '+')) {
if (expression.charAt(i) == '+') {
nums.add(expression.substring(i + 1, j));
} else {
nums.add(expression.substring(i, j));
}
i = j;
}
j++;
}
String result = "0/1";
for (String frac : nums) {
result = add(result, frac);
}
return result;
}
private String add(String result, String frac) {
String[] frac1 = frac.split("/");
String[] frac2 = result.split("/");
int n1 = Integer.parseInt(frac1[0]);
int d1 = Integer.parseInt(frac1[1]);
int n2 = Integer.parseInt(frac2[0]);
int d2 = Integer.parseInt(frac2[1]);
int numerator = n1 * d2 + n2 * d1;
int denominator = d1 * d2;
if (numerator == 0) {
return "0/1";
}
boolean negative = numerator * denominator < 0;
numerator = Math.abs(numerator);
denominator = Math.abs(denominator);
int gcd = getGCD(numerator, denominator);
return (negative ? "-" : "") + (numerator / gcd) + "/" + (denominator / gcd);
}
private int getGCD(int a, int b) {
if (a == 0 || b == 0) {
return a + b;
}
return getGCD(b, a % b);
}
}
}