forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBellNumbers.java
More file actions
59 lines (51 loc) · 1.92 KB
/
BellNumbers.java
File metadata and controls
59 lines (51 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.thealgorithms.maths;
/**
* The Bell numbers count the number of partitions of a set.
* The n-th Bell number is the number of ways a set of n elements can be partitioned
* into nonempty subsets.
*
* <p>
* This implementation uses the Bell Triangle (Aitken's array) method.
* Time Complexity: O(n^2)
* Space Complexity: O(n^2)
* </p>
*
* @author Chahat Sandhu, <a href="https://github.com/singhc7">singhc7</a>
* @see <a href="https://en.wikipedia.org/wiki/Bell_number">Bell Number (Wikipedia)</a>
*/
public final class BellNumbers {
private BellNumbers() {
}
/**
* Calculates the n-th Bell number using the Bell Triangle.
*
* @param n the index of the Bell number (must be non-negative)
* @return the n-th Bell number
* @throws IllegalArgumentException if n is negative or n > 25
*/
public static long compute(int n) {
if (n < 0) {
throw new IllegalArgumentException("n must be non-negative");
}
if (n == 0) {
return 1;
}
if (n > 25) {
throw new IllegalArgumentException("n must be <= 25. For larger n, use BigInteger implementation.");
}
// We use a 2D array to visualize the Bell Triangle
long[][] bellTriangle = new long[n + 1][n + 1];
// Base case: The triangle starts with 1
bellTriangle[0][0] = 1;
for (int i = 1; i <= n; i++) {
// Rule 1: The first number in a new row is the LAST number of the previous row
bellTriangle[i][0] = bellTriangle[i - 1][i - 1];
// Rule 2: Fill the rest of the row by adding the previous neighbor and the upper-left neighbor
for (int j = 1; j <= i; j++) {
bellTriangle[i][j] = bellTriangle[i][j - 1] + bellTriangle[i - 1][j - 1];
}
}
// The Bell number B_n is the first number in the n-th row
return bellTriangle[n][0];
}
}