Every recursive algorithm must have the problem of ________
Every recursive algorithm must have the problem of ________ Correct Answer overhead of repeated function calls
Due to the overhead of repeated function calls and returns, recursive algorithms may be inefficient for small data. Any recursion can be replaced by iteration with an explicit call stack whereas iteration can be replaced with tail recursion.
মোঃ আরিফুল ইসলাম
Feb 20, 2025