Generate all the BST

Source: Internet
Author: User

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

Analysis: For n, the valid BST has C (n,2*n)/(n+1)) species.

According to the post-order achievements, [1,.. I-1] I [i+1,.. N] First build the right and left to the legal BST, and then received root.

The left sub-tree form has m species, the right subtree has k species, then try to m*k the way of splicing.

Public list<treenode> generatetrees (int l, int r) {        list<treenode> List = new Arraylist<treenode> ( );        if (L > R) {            list.add (null);            return list;        }        for (int i = l; I <= R; i++) {            list<treenode> lefts = Generatetrees (l, i-1);            list<treenode> rights = Generatetrees (i + 1, r);            for (TreeNode left:lefts) {for                (TreeNode right:rights) {                    TreeNode root = new TreeNode (i);                    Root.left = left;                    Root.right = right;                    List.add (root);        }}} return list;    }    Public list<treenode> generatetrees (int n) {        return generatetrees (1, n);    }


Generate all the BST

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.