bloodfire
bloodfire
全部文章
分类
刷题(146)
知识点(10)
读书笔记(25)
题解(49)
归档
标签
去牛客网
登录
/
注册
bloodfire的博客
全部文章
(共1篇)
递归系列
问题一:大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项(从0开始,第0项为0),n<=39。给出一个非递归代码。 class Solution { public: int Fibonacci(int n) { //用循环不用递归 ...
递归
2019-12-17
0
661