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

i am trying to compute a polynomial recursively using Horners method. I have been able to do it iteratively but i wanted to write a recursive solution. i came up with a recurdive solution but my solution is based on a void method. here is my code:

public static void hornerRecursion(int[] a, int x, int index, int result) {

    if(index==0) { 
        result += a[index];
        System.out.println(result);
        return;
    }
    //if(index == a.length-1) return a[index]*x;
    result = x*(a[index]+result);
    //System.out.println(result);
    hornerRecursion(a,x,index-1,result);        
}

This method has a void return type but i want to write a method with an int return type. hhere is what i have for method with a return int type:

public static int hornerRecursion(int[] a, int x, int index) {
    int result = 0;
    if(index == 0) {
        return a[index];
    }
    result += x*(a[index]+hornerRecursion(a,x,index-1));
    return result;
}

this is giving me the wrong result, if u can help me spot where i may be be wrong i wud really appreciate it.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.