欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

算法训练 6-1 递归求二项式系数值

程序员文章站 2022-06-06 20:55:35
...

算法训练 6-1 递归求二项式系数值

根据公式可直接写出递归的函数lcd。
代码如下:

package ALGO_150;
import java.util.Scanner;
public class Main {
    public static int lcd(int n,int k){
        int res;
        if(k==0||k==n)
            res=1;
        else
            res=lcd(n-1,k)+lcd(n-1,k-1);
        return res;
    }
    public static void main(String[] args) {
        Scanner cin=new Scanner(System.in);
        int k=cin.nextInt();
        int n=cin.nextInt();
        int res=lcd(n,k);
        System.out.print(res);
    }
}