newCoderTheWarrior
newCoderTheWarrior
全部文章
分类
未归档(3)
题解(22)
归档
标签
去牛客网
登录
/
注册
newCoderTheWarrior的博客
全部文章
(共1篇)
题解 | #斐波那契数列# 【模拟】详细注释 双超100
解题思路 本题为简单模拟题,按题给条件进行n次模拟即可。当然也有打表和公式的O(1)解法。 代码 class Solution { public: int fib(int n) { if(n==0) return 0;//如果n为0,返回0 int a = 1...
C++
数学
2021-12-16
0
465