|
Re: Techniques For Overcoming Stack Overflow In DP
You could keep your own stack of items to work on (separate from the program stack) and use a loop to pick the last item on the stack. This depends on being able to keep all your context in your own stack entry.
|