博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode[166]Fraction to Recurring Decimal
阅读量:5082 次
发布时间:2019-06-13

本文共 1393 字,大约阅读时间需要 4 分钟。

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.

For example,

     Given numerator = 1, denominator = 2, return "0.5".

     Given numerator = 2, denominator = 1, return "2".

     Given numerator = 2, denominator = 3, return "0.(6)".

class Solution {public:string  to_str(long long  n){    string str="";    if(n==0)    {        str+='0';        return str;    }    long long tmp=n;    long long power=1;    int icount=0;    while (tmp)    {        tmp/=10;        power*=10;        icount++;    }    power/=10;    tmp=n;    for (int i=0;i
0&&den<0)||(num<0&&den>0)) res+="-"; num=num>=0?num:-num,den=den>=0?den:-den; long long part=num/den; res+=to_str(part); long long f=num%den; if(f==0)return res; res+='.'; map
fmap; while(f) { if (fmap.count(f)) { int beg=fmap[f]; string part1=res.substr(0,beg); string part2=res.substr(beg,res.length()); res=part1+"("+part2+")"; return res; } else { fmap[f]=res.length(); f*=10; res+=to_str(f/den); f%=den; } } return res;}};

 

转载于:https://www.cnblogs.com/Vae1990Silence/p/4280677.html

你可能感兴趣的文章
csv HTTP简单表服务器
查看>>
OO设计的接口分隔原则
查看>>
数据库连接字符串大全 (转载)
查看>>
java类加载和对象初始化
查看>>
对于负载均衡的理解
查看>>
django简介
查看>>
window.event在IE和Firefox的异同
查看>>
常见的js算法面试题收集,es6实现
查看>>
IO流写出到本地 D盘demoIO.txt 文本中
查看>>
Windows10 下Apache服务器搭建
查看>>
HDU 5458 Stability
查看>>
左手坐标系和右手坐标系
查看>>
solr后台操作Documents之增删改查
查看>>
http://yusi123.com/
查看>>
文件文本的操作
查看>>
Ubuntu linux下gcc版本切换
查看>>
记一次Web服务的性能调优
查看>>
jQuery.form.js使用
查看>>
(转)linux sort,uniq,cut,wc命令详解
查看>>
关于ExecuteNonQuery执行的返回值(SQL语句、存储过程)
查看>>