Here you can find the source of binomial(int N, int K)
Parameter | Description |
---|---|
N | >= 0 |
K | >= 0 |
public static long binomial(int N, int K)
//package com.java2s; /*/*from w ww .j a v a 2 s . co m*/ * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ public class Main { /** * Compute binomial (N) (K) * * @param N >= 0 * @param K >= 0 * @return binomial(N,K) */ public static long binomial(int N, int K) { assert N >= 0 : N; assert K >= 0 : K; long[][] binomial = new long[N + 1][K + 1]; // base cases for (int k = 1; k <= K; k++) { binomial[0][k] = 0; } for (int n = 0; n <= N; n++) { binomial[n][0] = 1; } // bottom-up dynamic programming int k; for (int n = 1; n <= N; n++) { for (k = 1; k <= K; k++) { binomial[n][k] = binomial[n - 1][k - 1] + binomial[n - 1][k]; } } return binomial[N][K]; } }