Recursion and Iteration

前端 未结 7 555
故里飘歌
故里飘歌 2020-12-18 08:43

What is the difference? Are these the same? If not, can someone please give me an example?

MW: Iteration - 1 : the action or a process of iterating or repeating: as

7条回答
  •  梦毁少年i
    2020-12-18 09:25

    For difference between recursive vs non-recursive; recursive implementations are a bit easier to verify for correctness; non- recursive implementations are a bit more efficient.

    Algorithms (4th Edition)

提交回复
热议问题