Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我了解了递归函数,并且已经在 Google 上搜索了该练习,并且正在寻找更多练习。
请给我一些练习(链接,或者只是在这里说)。
非常感谢,我希望不是 ilegel 来问这个问题,我没有找到并统治说那是 ilegel。谢谢
通过练习递归来练习递归。
我最喜欢的递归函数是给出 i 的函数。斐波那契数
int 斐波那契 (i) {...}
斐波那契数:第一个是 0,第二个是 1,然后 F(n) = F(n-1) + F(n-2)
其他很好的例子是二叉树中的搜索。