侧边栏壁纸
博主头像
Hope博主等级

努力赚钱的工科研究生

  • 累计撰写 362 篇文章
  • 累计创建 129 个标签
  • 累计收到 5 条评论
标签搜索

LeetCode 166. 分数到小数

Hope
2022-03-06 / 0 评论 / 0 点赞 / 252 阅读 / 480 字
温馨提示:
本文最后更新于 2022-03-06,若内容或图片失效,请留言反馈。部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

166. 分数到小数

思路:

模拟除法的过程,用hash表记录每个点的起点位置,为了处理循环小数。

代码:

class Solution {
public:
    typedef long long LL;
    unordered_map<LL,int> hash;
    string fractionToDecimal(int numerator, int denominator) {
        LL x = numerator,y = denominator;
        string res;
        if(x % y == 0) return to_string(x / y);
        if((x < 0) ^ (y < 0)) res += '-';
        x = abs(x),y = abs(y);
        res += to_string(x / y) + '.', x %= y;
        while(x){
            //记录每个数字的起点位置
            hash[x] = res.size();
            x *= 10;
            res += to_string(x / y);
            x %= y;
            if(hash.count(x)){
                return res.substr(0,hash[x]) + '(' + res.substr(hash[x]) + ')';
            }
        }
        return res;

    }
};
0

评论区