摘要: 题目链接:https://leetcode-cn.com/problems/unique-binary-search-trees/ 题目描述: 题解: 1.有一个节点时:dp[1] = 1; 2.有两个节点时:dp[2] = dp[0] * dp[1] + dp[1] * dp[0]; //左子树0 阅读全文
posted @ 2021-07-29 15:54 张宵 阅读(33) 评论(0) 推荐(1) 编辑