别人写的LinkedIn 面经里的一题

原链接http://mp.weixin.qq.com/s?__biz=MzA5MTgwMDU4NQ==&mid=208140301&idx=4&sn=40f992b590a767d775c593ea2f438474&scene=2&srcid=1222Q1O1d2Za8fmolYxAi1pP&from=timeline&isappinstalled=0#wechat_redirect

这题怎么做啊?是动态规划么 ??

5.public void printFactors(int n)

example:

input:12

output:

1 * 12

2 * 6

2 * 2 * 3

3 * 4


input:24

output:

1 * 32

2 * 16

2 * 2 * 8

2 * 2 * 2 * 4

2 * 2 * 2 * 2 * 2

2 * 4 * 4

4 * 8

全部评论
第二个测试用例的输入是32,不是24。 代码: public static void printFactors(int n) { System.out.println(1 + "*" + n); function(n, 1, ""); } public static void function(int n, int preChushu, String str) { int shang, yushu, chushu; for (chushu = 2; chushu <= Math.sqrt(n); chushu++) { yushu = n % chushu; shang = n / chushu; if (yushu == 0 && chushu >= preChushu) { System.out.println(str + chushu + "*" + shang); function(shang, chushu, str + chushu + "*"); } } } 解析见我的博客:  Linkedin面试题
点赞 回复 分享
发布于 2016-02-20 11:59

相关推荐

点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务