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

I keep getting this stackoverflowerror, in java, i'm trying to explore a tree of posibilities for a problem, the thing is i can't find a recursion error in my code, the logic seems fine to me

void StartTree(){//Starts the tree
for(int i=0;i<Startstack.PLen;i++){
int [] flip = new int [1];//Creates an array that stores the current flips
flip[0]=i;//Sets the first flip at i
PancakeStk CurrentStack = new PancakeStk(Startstack.Pancakes);//Copies the stack into a new stack
CurrentStack.flip(i);//flips the new stack
if(CO(CurrentStack,flip)){return;}
Tree(CurrentStack,flip);//makes a tree over the new stack
}
}

void Tree(PancakeStk p, int[] Cflips){
    //<editor-fold defaultstate="collapsed" desc="Check for stop conditions">
    //check for stop conditions
    //array is ordered
    if(CO(p,Cflips)){
    //array is ordered and the depth is the minimum
        return;
    }
    //the tree has reached the maximum depth
    if(Cflips.length==depth){return;}
    //</editor-fold>
    for(int i=0;i<Startstack.PLen;i++){
    if(i==Cflips[Cflips.length-1]){continue;}//if i is equal than the flip before, continue to next flip

    else{
        int [] flip = new int [(Cflips.length+1)];//declare array for the flips
        System.arraycopy(Cflips, 0, flip, 0, Cflips.length);//copy the past flips
        flip[Cflips.length-1]=i;//add the current flip
        PancakeStk CurrentStack = new PancakeStk(p.Pancakes);//Copies the stack into a new stack
        CurrentStack.flip(i);//flips the stack in i
        Tree(CurrentStack, flip);//makes a tree over the new stack
    }
    }
}

    boolean CO (PancakeStk p, int[] Cflips){
    if(p.CheckOrder()){
    //array is ordered and the depth is the minimum
        if(Cflips.length<min){
        min = Cflips.length;
        System.arraycopy(zeroarr, 0, flips, 0, zeroarr.length);//initializes the array
        System.arraycopy(Cflips, 0, flips, 0, Cflips.length);//copies the new array
        return true;
        }
    }return false;
    }

}

that was the code, the recursing function is the tree function, although java says the exception is at CO function (stands for checkorder) , im testing this with a trivial case the ordered case, and it won't work . :(

i hope you guys can help me

share|improve this question
4  
Could you please narrow down your code to a simpler example, please? This will help both us and you to understand the code better. Remove any code not necessary for understanding the problem, please :) – Erik A. Brandstadmoen Aug 21 '11 at 20:49
2  
Pop a debugger on there and see if it's doing what you want, follow each step and see if it does what's expected. – Jesus Ramos Aug 21 '11 at 20:49
1  
There is indeed a recursion; Tree calls itself. – Oli Charlesworth Aug 21 '11 at 20:51
1  
Also consider indenting your code. A stack trace would help as well. When you've done that flag to re-open. Thanks. – Kev Aug 21 '11 at 20:52

closed as not a real question by Kev Aug 21 '11 at 20:53

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.

1 Answer

Can't read that code. Take a look at the recursive call in your code and make sure that the stopping condition is met. If it's not, that recursion will go on forever.

If you look at the code and think that it's correct, check your assumptions. The runtime just said it wasn't.

A debugger is your best bet. Write a unit test and step through the code.

share|improve this answer

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