Fraction to Recurring Decimal
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format. If the fractional part is repeating, enclose the repeating part in parentheses.
(分数->小数)
Example:
1. 哈希表
本题意在将分数转换为小数点的形式表示,主要考察的是无限循环小数。在除法与商和余数的过程中,首先需要考虑符号的问题。其次,我们需要把每次的余数保存在 remainder_map
中,当下次出现余数已经出现了则说明出现了循环。具体实现方法如下:
1 | class Solution: |