forked from aalhour/C-Sharp-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CatalanNumbers.cs
91 lines (76 loc) · 2.79 KB
/
CatalanNumbers.cs
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/***
* Computes the Catalan Numbers. A dynamic-programming solution.
*
* Wikipedia: https://en.wikipedia.org/wiki/Catalan_number
*/
using System.Diagnostics;
using System.Collections.Generic;
using System.Numerics;
namespace Algorithms.Numeric
{
public static class CatalanNumbers
{
/// <summary>
/// Internal cache.
/// By default contains the first two catalan numbers for the ranks: 0, and 1.
/// </summary>
private static readonly Dictionary<uint, BigInteger> CachedCatalanNumbers = new Dictionary<uint, BigInteger> { { 0, 1 }, { 1, 1 } };
/// <summary>
/// Helper method.
/// </summary>
/// <param name="rank"></param>
/// <returns></returns>
private static BigInteger _recursiveHelper(uint rank)
{
if (CachedCatalanNumbers.ContainsKey(rank))
return CachedCatalanNumbers[rank];
BigInteger number = 0;
var lastRank = rank - 1;
for (uint i = 0; i <= lastRank; ++i)
{
var firstPart = _recursiveHelper(i);
var secondPart = _recursiveHelper(lastRank - i);
if (!CachedCatalanNumbers.ContainsKey(i)) CachedCatalanNumbers.Add(i, firstPart);
if (!CachedCatalanNumbers.ContainsKey(lastRank - i)) CachedCatalanNumbers.Add(lastRank - i, secondPart);
number = number + (firstPart * secondPart);
}
return number;
}
/// <summary>
/// Public API.
/// </summary>
/// <param name="rank"></param>
/// <returns></returns>
public static BigInteger GetNumber(uint rank)
{
// Assert the cache is not empty.
Debug.Assert(CachedCatalanNumbers.Count >= 2);
return _recursiveHelper(rank);
}
/// <summary>
/// Calculate the number using the Binomial Coefficients algorithm
/// </summary>
/// <param name="rank"></param>
/// <returns></returns>
public static BigInteger GetNumberByBinomialCoefficients(uint rank)
{
// Calculate by binomial coefficient.
return BinomialCoefficients.Calculate(rank);
}
/// <summary>
/// Return the list of catalan numbers between two ranks, inclusive
/// </summary>
/// <param name="fromRank"></param>
/// <param name="toRank"></param>
/// <returns></returns>
public static List<BigInteger> GetRange(uint fromRank, uint toRank)
{
var numbers = new List<BigInteger>();
if (fromRank > toRank)
return null;
for (var i = fromRank; i <= toRank; ++i)
numbers.Add(GetNumber(i));
return numbers;
}
}
}