码迷,mamicode.com
首页 > 其他好文 > 详细

给定n求二叉搜索树的个数

时间:2014-09-04 18:52:29      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   strong   for   div   

Given n, generate all structurally unique BST‘s (binary search trees) that store values 1...n.

For example,
Given n = 3, your program should return all 5 unique BST‘s shown below.

   1         3     3      2      1
    \       /     /      / \           3     2     1      1   3      2
    /     /       \                    2     1         2                 3

 

confused what "{1,#,2,3}" means? > read more on how binary tree is serialized on OJ.

 

/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
private:
    vector<TreeNode *> generate(int l, int r)
    {
        vector<TreeNode *> ans; 
        if (l > r)
        {
            ans.push_back(NULL);
        }
        else
        {
            for (int i=l; i<=r; i++){
                vector<TreeNode *> left = generate(l, i-1);
                vector<TreeNode *> right = generate(i+1, r);
                for (int j=0; j<left.size(); j++)
                {
                   for (int k=0; k<right.size(); k++)
                    {
                        TreeNode *pRoot = new TreeNode(i);
                        pRoot->left = left[j];
                        pRoot->right = right[k];
                        ans.push_back(pRoot);
                    }
                }

            }
            
        }
        
        return ans;
    }
public:
    vector<TreeNode *> generateTrees(int n) {
        return generate(1, n);
    }
};

 

给定n求二叉搜索树的个数

标签:style   blog   http   color   io   ar   strong   for   div   

原文地址:http://www.cnblogs.com/zhhwgis/p/3956628.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!