Add Trinomial triangle #2651 (#2652)

This commit is contained in:
Florian 2021-10-23 12:58:33 +02:00 committed by GitHub
parent 831a0a4bd0
commit 5855983fe5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,47 @@
package Maths;
/**
* The trinomial triangle is a variation of Pascals triangle. The difference
* between the two is that an entry in the trinomial triangle is the sum of the
* three (rather than the two in Pasacals triangle) entries above it
*
* Example Input: n = 4
* Output
* 1
* 1 1 1
* 1 2 3 2 1
* 1 3 6 7 6 3 1
*/
public class TrinomialTriangle {
public static int TrinomialValue(int n, int k) {
if (n == 0 && k == 0) {
return 1;
}
if (k < -n || k > n) {
return 0;
}
return TrinomialValue(n - 1, k - 1) + TrinomialValue(n - 1, k) + TrinomialValue(n - 1, k + 1);
}
public static void printTrinomial(int n) {
for (int i = 0; i < n; i++) {
for (int j = -i; j <= 0; j++) {
System.out.print(TrinomialValue(i, j) + " ");
}
for (int j = 1; j <= i; j++) {
System.out.print(TrinomialValue(i, j) + " ");
}
System.out.println();
}
}
public static void main(String argc[]) {
int n = 6;
printTrinomial(n);
}
}