Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The following code results in a stackoverflow error. How many, values of nCr, for 1<=n <=100, are greater than one-million? Please help.

import java.math.BigInteger;

public class combinatorics {

    private BigInteger one = new BigInteger("1");
    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        combinatorics cmb = new combinatorics();
        cmb.combin();
        //BigInteger val= new BigInteger("99");
        //BigInteger num=cmb.factorial(val);
        //System.out.println(num);
        /*BigInteger val1= new BigInteger("19");
        BigInteger val2= new BigInteger("29");
        BigInteger num1=cmb.factorial(val1);
        BigInteger num2=cmb.factorial(val2);
        System.out.println(num1);
        System.out.println(num2);*/
    }

    public void combin()
    {
        BigInteger fact= new BigInteger("1");
        BigInteger val= new BigInteger("1000000");
        int count=0;

        for(int n=1;n<=100;n++)
        {
            //System.out.println(n);
            for(int r=0;r<=100;r++)
            {
                BigInteger n1= BigInteger.valueOf(n);
                BigInteger r1= BigInteger.valueOf(r);
                if(r<=n)
                    fact=factorial(n1).divide((factorial(r1).multiply(factorial(n1.subtract(r1)))));
                if(fact.compareTo(val)>0)
                    count++;
                }
            }
            System.out.println(count);
        }
    }

    public BigInteger factorial(BigInteger num)
    {
        BigInteger fact;
        BigInteger num1=num;
        BigInteger num2;
        if(num.compareTo(one)==0)
            return num;
        else
        {   
            num=num.subtract(one);
            fact=factorial(num);
            return (num1.multiply(fact));
        }
    }
}
share|improve this question
4  
Ugh ... what is your question? Your title seems to be a random heap of words. Could you edit your question body to include an actual question? You post code. Does it compile? Does it run? What's the problem? – Joachim Sauer Jul 7 '11 at 8:34
1  
If you want to do a project euler problem, ask for hints. – Jacob Jul 7 '11 at 8:34

closed as not a real question by JB Nizet, Bart Kiers, mindas, Bill the Lizard Jul 7 '11 at 11:32

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

You can avoid the stack overflow by using iteration instead of recursion:

public BigInteger factorial(BigInteger num) {
    BigInteger fact = one;
    while (num.compareTo(one) > 0) {
        fact = fact.multiply(num);
        num = num.subtract(one);
    }
    return fact;
}

But you probably need a more clever approach to get an acceptable performance.

share|improve this answer
@AvadaKedavra Sorry I couldnot fit in my qs in the title...my program gave me a stackoverflow error when I call cmb.combin(); But when I call to check the recursive factorial method individually it works..i cant work a possible reason... – bozo user Jul 8 '11 at 5:23

This is Problem 53 of Project Euler.

Since you showed your effort and Landei said to take clever approach, here is my solution:

FactorialGenerator.java

public class FactorialGenerator {

    private BigInteger[] factoials;
    private int limit;

    public FactorialGenerator(int limit) {
        factoials = new BigInteger[limit + 1];
        this.limit = limit;
        init();
    }

    private void init() {
        factoials[0] = BigInteger.ONE;
        factoials[1] = BigInteger.ONE;

        for (int i = 2; i <= limit; i++) {
            factoials[i] = factoials[i - 1].multiply(BigInteger.valueOf(i));
        }       
    }

    public BigInteger[] getFactorials(){
        return factoials;
    }
}

Controller.java

public class Controller {

    public static void main(String[] args) {
        long startTime = System.currentTimeMillis();
        int limit = 100;
        BigInteger[] factorials = new FactorialGenerator(limit).getFactorials();
        BigInteger value = new BigInteger("1000000");
        int count = 0;

        for (int n = 1; n <= limit; n++) {
            for (int r = 1; r <= n; r++) {
                BigInteger factorial_r = factorials[r];
                BigInteger factorial_n = factorials[n];
                BigInteger factorial_nr = factorials[n - r];

                if (factorial_n.divide(factorial_r.multiply(factorial_nr)).compareTo(value) == 1) {
                    count++;
                }
            }
        }

        System.out.println("Result: " + count);
        System.out.println("Excution time: " + (System.currentTimeMillis() - startTime) + "ms.");
    }
}

If you need to calculate Factorial for a continuous range of number don't try to find factorial for each number, keep in mind that fact(n)=n*fact(n-1). The FactorialGenerator class do the same job.

Also there is no need of

for(int n=1;n<=100;n++) {
   for(int r=0;r<=100;r++) {
      if(r<=n) {
      }
   }
}

You can do it as:

for(int n=1;n<=100;n++) {
   for(int r=0;r<=n;r++) {
   }
}

for this particular case.

Hope this helps you. Execution time: 46 ms. (Try to keep it < 1 min and design your algorithm accordingly).


Factorial using recursion:

private BigInteger factorial(BigInteger n) {
    if (n.compareTo(BigInteger.ONE) == 0) {
        return n;
    } else {
        return n.multiply(factorial(n.subtract(BigInteger.ONE)));
    }
}

Source.

share|improve this answer
thanks for your solution but my question was why was I getting a stackoverflow error.....I have just begun coding in java...I dont understand the nuances....thanks again!! – bozo user Jul 8 '11 at 5:26
I think the problem is with your recursive call, though I didn't execute your code. Look at my edit where I gave you a recursive version of factorial finder. Hope it will help you. – Tapas Bose Jul 8 '11 at 8:54

Not the answer you're looking for? Browse other questions tagged or ask your own question.