diff options
author | crupest <crupest@outlook.com> | 2020-07-24 16:10:08 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-07-24 16:10:08 +0800 |
commit | 25625c4f2e6af2836af27d8c2678f516b768fb5b (patch) | |
tree | 8dce11545d132c486f29979515a35dd4e0072a2a /works/solutions/cpp/96.cpp | |
parent | 2012f0eb0935be0b98121fccc06c042a4ea3e89c (diff) | |
parent | c777316c3997d92fbcb12826c87f3fbdc67290e9 (diff) | |
download | crupest-25625c4f2e6af2836af27d8c2678f516b768fb5b.tar.gz crupest-25625c4f2e6af2836af27d8c2678f516b768fb5b.tar.bz2 crupest-25625c4f2e6af2836af27d8c2678f516b768fb5b.zip |
import(solutions): Merge branch 'master' of https://github.com/crupest/leetcode
Diffstat (limited to 'works/solutions/cpp/96.cpp')
-rw-r--r-- | works/solutions/cpp/96.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/works/solutions/cpp/96.cpp b/works/solutions/cpp/96.cpp new file mode 100644 index 0000000..a67a59a --- /dev/null +++ b/works/solutions/cpp/96.cpp @@ -0,0 +1,14 @@ +class Solution { +public: + // catalan number: + // f(n) = f(0) * f(n-1) + f(1) * f(n-2) + ... + f(n-1)*f(0) + // f(n) = 2(2n-1) * f(n-1) / (n+1) + // f(n) = C(2n, n) / (n+1) + int numTrees(int n) { + long long result = 1; + for (int i = 2; i <= n; i++) { + result = 2 * (2 * i - 1) * result / (i + 1); + } + return result; + } +}; |