首页 > 其他 > 详细

LeetCode "Unique Binary Search Trees"

时间:2014-07-18 18:17:53      阅读:351      评论:0      收藏:0      [点我收藏+]

Another recursion-style problem.

1. Each count of sub-solution with a certain root should contribute to final count

2. With a certain root, the num of left child sub-tree multiply the right one, is the current count

1A, YEAH!

class Solution {
public:

    int numTrees(int n) {
        if (n <= 1) return 1;
        if (n == 2) return 2;
        int cnt = 0;
        for (int i = 1; i <= n; i++)
        {
            int r1 = numTrees(i - 1);
            int r2 = numTrees(n - i);
            cnt += r1 * r2;
        }
        return cnt;
    }
};

LeetCode "Unique Binary Search Trees",布布扣,bubuko.com

LeetCode "Unique Binary Search Trees"

原文:http://www.cnblogs.com/tonix/p/3853414.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!