up vote 1 down vote favorite
share [g+] share [fb]

So, I was reading about linked lists and recursion. I just wanted to know why can't I use recursion in a method that is static void? Also, I was wondering in Java in the linked list recursion, why you can use static void in printing or search for the nodes. Thank you.

link|improve this question
Which specific programming language? – Derek B. Nov 4 '09 at 23:16
It looks like its a Java or C# question, given the context and the return value. (C++ is very unlikely given the context) – monksy Nov 4 '09 at 23:19
Yes! you are correct its Java. – Cruiser Nov 4 '09 at 23:21
feedback

2 Answers

You can use recursion in a function that's static void. It just has to return its value or do what it's supposed to do via side-effects, which is often considered harmful. But for printing it makes perfect sense.

static void printList(node)
{
    if (node != null)
    {
        print(node);
        printList(node.next);
    }
}
link|improve this answer
feedback

You can use a static method when using recursion. You just have to pass in all of the information that is necessary to work inside the function. With Linked lists recursion is strongly encouraged because of how they are designed (each node contains a reference to the next node and (sometimes) its previous).

link|improve this answer
Depending on the JIT compiler's ability to do tail-recursion optimization, recursively processing a long linked list can result in a stack overflow. – Stephen C Nov 5 '09 at 1:31
feedback

Your Answer

 
or
required, but never shown

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