I have a program that passes in huge amounts of data, say 1000 variables, through recursion. The recursion would run to atleast 50 or 60 times. What I\'m worried about is, i
There's no chance of getting wrong results: in case of a stackoverflow your program will terminate prematurely with a StackOverflowError.
The memory locations where you store the data cannot be overwritten by anything else.