摘要: 分解质因数求最大公约数求最小公倍数牛顿迭代求平方根分解质因数import java.util.ArrayList;import java.util.List;public class Solution { // 返回质因数分解 List getPrimeFactors(int n) { ... 阅读全文
posted @ 2014-09-17 17:11 jdflyfly 阅读(212) 评论(0) 推荐(0) 编辑