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

卡特兰数问题

时间:2015-06-03 13:38:30      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:

问题:给定N个节点,能构成多少种不同的二叉树.

回答:卡特兰数运用.

import java.util.*;
import java.math.*;
public class Main{
    public static void main(String[] args)
    {
        int n;
        Scanner in=new Scanner(System.in);
        BigInteger one=BigInteger.ONE;
        BigInteger four=new BigInteger("4");
        BigInteger two=new BigInteger("2");
        BigInteger st=null;
        BigInteger ans=null;
        while(in.hasNextInt())
        {
            n=in.nextInt();
            ans=BigInteger.ONE;
            for(int i=2;i<=n;i++)
            {
                st=new BigInteger(""+i);
                ans=ans.multiply(st.multiply(four).subtract(two)).divide(st.add(one));
            }
            System.out.println(ans);
        }
    }
}

卡特兰数问题

标签:

原文地址:http://www.cnblogs.com/benchao/p/4548804.html

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