剑指offer丑数

Posted estherljy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer丑数相关的知识,希望对你有一定的参考价值。

一、题目:

      把只包含质因子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丑数的主要内容,如果未能解决你的问题,请参考以下文章

剑指offer-丑数

剑指Offer——丑数

剑指offer丑数

剑指offer面试题 49. 丑数

《剑指offer》第四十九题(丑数)

剑指Offer49. 丑数(三指针)