592 Fraction Addition and Subtraction

592. Fraction Addition and Subtraction

题目描述

Given a string representing an expression of fraction addition and subtraction, you need to return the calculation result in string format. The final result should be irreducible fraction. If your final result is an integer, say 2, you need to change it to the format of fraction that has denominator 1. So in this case, 2 should be converted to 2/1.

1
2
3
Example 1:
Input:"-1/2+1/2"
Output: "0/1"

Example 2:

1
2
Input:"-1/2+1/2+1/3"
Output: "1/3"

Example 3:

1
2
Input:"1/3-1/2"
Output: "-1/6"

Example 4:

1
2
Input:"5/3+1/3"
Output: "2/1"

Note:

  • The input string only contains ‘0’ to ‘9’, ‘/‘, ‘+’ and ‘-‘. So does the output.
  • Each fraction (input and output) has format ±numerator/denominator. If the first input fraction or the output is positive, then ‘+’ will be omitted.
  • The input only contains valid irreducible fractions, where the numerator and denominator of each fraction will always be in the range [1,10]. If the denominator is 1, it means this fraction is actually an integer in a fraction format defined above.
  • The number of given fractions will be in the range [1,10].
  • The numerator and denominator of the final result are guaranteed to be valid and in the range of 32-bit int.

题目大意

通过字符串完成表达式的计算。

解题思路

将”+” 和 “-“作为数字的正负号。
采用欧几里得算法求最大公约数,对分数进行约分。
利用tuple记录分子和分母。

代码

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
class Solution {
func greatestCommonDivisor(m: Int, d: Int) -> Int {
return m == 0 ? d : greatestCommonDivisor(m: d % m, d: m)
}
func fractionAddition(_ expression: String) -> String {
var ans = (0, 1)
var score = (0, 0)
var symbol = 1
var num = 0
for (i, e) in expression.enumerated() {
if e == "-" || e == "+" {
symbol = e == "-" ? -1 : 1
} else if e == "/" {
score.0 = symbol * num
num = 0
} else {
num = num * 10 + Int(String(e))!
}
if ((e == "-" || e == "+") && num != 0) || i == expression.count - 1 {
score.1 = num
ans = (score.0 * ans.1 + score.1 * ans.0, (score.1 * ans.1))
let gcd = greatestCommonDivisor(m: abs(ans.0), d: ans.1)
ans = (ans.0 / gcd, ans.1 / gcd)
num = 0
}
}
return "\(ans.0)" + "/" + "\(ans.1)"
}
}
0%