算法学习一
2021-02-18 03:18
标签:big 编译 div private 结果 static 开始 它的 通过 java 写一个方法1000 的阶乘 算法学习一 标签:big 编译 div private 结果 static 开始 它的 通过 原文地址:https://www.cnblogs.com/cxxiao/p/12694300.html设有n个人依围成一圈,从第1个人开始报数,数到第m个人出列,
然后从出列的下一个人开始报数,数到第m个人又出列, …,
如此反复到所有的人全部出列为止。设n个人的编号分别为 1, 2, …, n,打印出
1 public static void main(String[] args) {
2 /*
3 * 设有n个人依围成一圈,从第1个人开始报数,数到第m个人出列,
4 * 然后从出列的下一个人开始报数,数到第m个人又出列,
5 * …,如此反复到所有的人全部出列为止。
6 * 设n个人的编号分别为 1, 2, …, n,打印出出
7 * */
8 List
public static void main(String[] args) {
long t = System.currentTimeMillis();
System.out.println(factorial(new BigInteger("1000")));
System.out.println(System.currentTimeMillis() - t);
t = System.currentTimeMillis();
System.out.println(factorial2(new BigInteger("1000"), BigInteger.ONE));
System.out.println(System.currentTimeMillis() - t);
}
/**
* 使用线性递归计算阶乘
*
* @param n
* @return
*/
public static BigInteger factorial(BigInteger n) {
if (n.compareTo(BigInteger.ZERO) return BigInteger.ZERO;
if (n.equals(BigInteger.ONE) || n.equals(BigInteger.ZERO)) {
return new BigInteger("1");
}
return n.multiply(factorial(n.subtract(BigInteger.ONE)));
}
/**
* 使用尾递归计算阶乘
* 如果一个函数中所有递归形式的调用都出现在函数的末尾,我们称这个递归函数是尾递归的。
* 当递归调用是整个函数体中最后执行的语句且它的返回值不属于表达式的一部分时,这个递归调用就是尾递归。
* 尾递归函数的特点是在回归过程中不用做任何操作,这个特性很重要,因为大多数现代的编译器会利用这种特点自动生成优化的代码。
* 尾递归是极其重要的,不用尾递归,函数的堆栈耗用难以估量,需要保存很多中间函数的堆栈。
* 通过参数传递结果,达到不压栈的目的
*
* @param n
* @param result
* @return
*/
public static BigInteger factorial2(BigInteger n, BigInteger result) {
if (n.compareTo(BigInteger.ZERO) return BigInteger.ZERO;
if (n.equals(BigInteger.ONE) || n.equals(BigInteger.ZERO)) {
return result;
}
return factorial2(n.subtract(BigInteger.ONE), n.multiply(result));
}
上一篇:UDP实现多线程聊天