用递归法实现斐波那契序列、阶乘、阶乘的阶乘

  • 斐波那契序列实现
    • 规则:当前这个数值,等于其前两位数值的和,示例如:1 1 2 3 5 8 13 21 34…
    • 实现方法:递归实现
    • 递归实现的要点
      • 终止条件
      • 循环主体
    • 具体代码实现
  • package com.czk;
    public class FiberTest {
       public static int fiber(int  location){
         if(location<1){
            return -1;
         }
         if(location==1 ||  location==2){
            return 1;
         }else{
            return  fiber(location-1)+fiber(location-2);
         }
       }
       public static void  main(String[] args) {
         System.out.println(fiber(-100));
         System.out.println(fiber(1));
         System.out.println(fiber(2));
         System.out.println(fiber(5));
         System.out.println(fiber(7));
       }
    }
    
  • 阶乘的实现
    • 规则:1的阶乘表示为1!=1,2!=2*1,3=3*2*1…
      • 实现方法:递归实现
      • 递归实现的要点
        • 终止条件
        • 循环主体
      • 具体代码实现
  • package com.czk;
    /**
    * 实现一阶阶乘
    *
    * @author czk
    *
    * @time:2019年7月31日
    */
    public class FacTest {
       public static long fac(int  n) {
         if (n < 1) {
            return -1;
         }
         if (n == 1) {
            return 1;
         } else {
            return n * fac(n - 1);
         }
       }
       public static void  main(String[] args) {
         System.out.println(fac(-3));
         System.out.println(fac(1));
         System.out.println(fac(2));
         System.out.println(fac(5));
       }
    }
    
    • 阶乘的阶乘
    • 规则:1的阶乘的阶乘表示为1!!=1,2!=2!*1!,3!!=3!*2!*1!..
      • 实现方法:递归实现
      • 递归实现的要点
        • 终止条件
        • 循环主体
      • 具体代码实现
    package com.czk;
    /**
    * 实现2阶阶乘
    *
    * @author czk
    *
    * @time:2019年7月31日
    */
    public class FacFacTest {
       public static long fac(int  n) {
         if (n < 1) {
            return -1;
         }
         if (n == 1) {
            return 1;
         } else {
            return n * fac(n - 1);
         }
       }
       
       public static long  facFac(int n) {
         if (n < 1) {
            return -1;
         }
         if (n == 1) {
            return 1;
         } else {
            return fac(n) *  facFac(n - 1);
         }
       }
       
       public static void  main(String[] args) {
         System.out.println(facFac(-3));
         System.out.println(facFac(1));
         System.out.println(facFac(2));
         System.out.println(facFac(5));
       }
    }
    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值