From 4c6c465c2e0268211a3abc1520a34d2d5f50c51b Mon Sep 17 00:00:00 2001 From: pingwen Date: Wed, 5 Aug 2020 13:23:39 +0800 Subject: [PATCH] LeetCode --- article/leetcode/leetcode.md | 1 + 1 file changed, 1 insertion(+) diff --git a/article/leetcode/leetcode.md b/article/leetcode/leetcode.md index df42b5d..8b709b2 100644 --- a/article/leetcode/leetcode.md +++ b/article/leetcode/leetcode.md @@ -86,6 +86,7 @@ LeetCode中的题目按真实面试中的出现频率降序排列。 | [113. 路径总和 II](https://leetcode-cn.com/problems/path-sum-ii/) | DFS+回溯 | [查看](https://github.com/pwstrick/daily/issues/1067) | | [105. 从前序与中序遍历序列构造二叉树](https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/) | 前序+中序 | [查看](https://github.com/pwstrick/daily/issues/1068) | | [226. 翻转二叉树](https://leetcode-cn.com/problems/invert-binary-tree/) | 递归+左右结点互换 | [查看](https://github.com/pwstrick/daily/issues/1069) | +| [96. 不同的二叉搜索树](https://leetcode-cn.com/problems/unique-binary-search-trees/) | [卡塔兰数](https://leetcode-cn.com/problems/unique-binary-search-trees/solution/bu-tong-de-er-cha-sou-suo-shu-by-leetcode-solution/) | [查看](https://github.com/pwstrick/daily/issues/1071) | ### 递归 | 题目 | 思路 | 实现 |