LeetCode-Unique Binary Search Trees

来源:互联网 发布:q宠大乐斗门派技能数据 编辑:程序博客网 时间:2024/06/06 01:21

Given n, how many structurally unique BST's (binary search trees) that store values 1...n?

For example,
Given n = 3, there are a total of 5 unique BST's.

   1         3     3      2      1    \       /     /      / \      \     3     2     1      1   3      2    /     /       \                 \   2     1         2                 3
Solution:

Code:

<span style="font-size:14px;">class Solution {public:    int helper(int begin, int end) {        if (begin >= end) return 1;        int result = 0;        for (int i = begin; i <= end; i++)            result += helper(begin, i-1)*helper(i+1, end);        return result;    }        int numTrees(int n) {        return helper(1, n);        }};</span>



0 0