rushcheyo
Results
1
issues of
rushcheyo
N 个节点的 BST 的形态为 Catalan 数的第 N 项,即 C(2n, n) / (n + 1) => (2n)! / n! / (n + 1),最后可以写成这样: ``` C++ class Solution { public: int numTrees(int...