What is tail recursion?

前端 未结 28 3593
一个人的身影
一个人的身影 2020-11-21 05:03

Whilst starting to learn lisp, I\'ve come across the term tail-recursive. What does it mean exactly?

28条回答
  •  傲寒
    傲寒 (楼主)
    2020-11-21 05:19

    I'm not a Lisp programmer, but I think this will help.

    Basically it's a style of programming such that the recursive call is the last thing you do.

提交回复
热议问题