DATA STRUCTURE
Programming and Technical
Programming
Technical
What data structure would you mostly likely see in a non
recursive implementation of a recursive algorithm?
Read Solution (Total 1)
-
- stack...
recursive algo works by calling itself, and each time with different value.
so we need to track the changing data on some kind of stack. - 10 years agoHelpfull: Yes(1) No(1)
DATA STRUCTURE Other Question