英文描述:Design an algorithm to find the kth number such that the only prime factors are 3, 5, and 7 思路:质因数只能为3,5,7,设这个数为val,则val = (3^i)(5^j)(7^n) (i,j,n>=0),显然第1个数为1,第2个为1*3,第3个为1*5,第4个为1*7,第5个为3*3,第6个为3*5,第7个为3*7... 如果将钱k-1个数组成一个链表r,可以看出,第k个数为3或5或7乘以前…