码迷,mamicode.com
首页 > 其他好文 > 详细

【剑指offer】丑数

时间:2018-08-10 18:01:43      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:space   ant   col   float   isp   ace   别人   com   indent   

一、题目:

      把只包含质因子2、3和5的数称作丑数(Ugly Number)。例如6、8都是丑数,但14不是,因为它包含质因子7。 习惯上我们把1当做是第一个丑数。求按从小到大的顺序的第N个丑数。

二、思路:

   en.....自己想不出来,还是抄袭别人的吧。

   技术分享图片

技术分享图片

技术分享图片

三、代码:

 

# -*- coding:utf-8 -*-
class Solution:
    def GetUglyNumber_Solution(self, index):
        # write code here
        if index<7:return index
        res=[1]
        p1=p3=p5=0
        next_index=1
        while next_index<index:
            min_value=min(res[p1]*2,res[p3]*3,res[p5]*5)
            res.append(min_value)
            if min_value==res[p1]*2:p1+=1
            if min_value==res[p3]*3:p3+=1
            if min_value==res[p5]*5:p5+=1
            next_index+=1
        return res[index-1]

 

【剑指offer】丑数

标签:space   ant   col   float   isp   ace   别人   com   indent   

原文地址:https://www.cnblogs.com/EstherLjy/p/9456437.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!