|
|
back to boardWhat about stack size? (+) Adding this simple fragment procedure search2(d: longint); begin if d <= 50000 then search2(d + 1); end; ............ search2(0); I turn Stack Overflow 29 into SO1. Is it mean, that I must avoid recursion in this task? How much stack size? Edited by author 30.08.2005 14:10 Is it so difficult to say how large stack? IMHO, it should be said in the FAQ or in a problem definition. |
|
|