構建根檔案系統
阿新 • • 發佈:2021-12-15
給你一個整數 n ,求恰由 n 個節點組成且節點值從 1 到 n 互不相同的 二叉搜尋樹 有多少種?返回滿足題意的二叉搜尋樹的種數。
來源:力扣(LeetCode)
連結:https://leetcode-cn.com/problems/unique-binary-search-trees
著作權歸領釦網路所有。商業轉載請聯絡官方授權,非商業轉載請註明出處。
心之所向,素履以往 生如逆旅,一葦以航import java.math.BigInteger; import java.util.Scanner; class Solution { private BigInteger catalan(int n) { BigInteger ret = BigInteger.ONE; for (int i = 2; i <= 2 * n; ++i) { ret = ret.multiply(BigInteger.valueOf(i)); } for (int i = 2; i <= n; ++i) { ret = ret.divide(BigInteger.valueOf(i).pow(2)); } return ret.divide(BigInteger.valueOf(n + 1)); } public int numTrees(int n) { return catalan(n).intValue(); } public static void main(String[] args) { Scanner in = new Scanner(System.in); while (in.hasNext()) { System.out.println(new Solution().numTrees(in.nextInt())); } } }