-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfib.cpp
47 lines (43 loc) · 846 Bytes
/
fib.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include<iostream>
#include<vector>
using namespace std;
int fib(int n)
{
if(n <= 1) return n;
int q = 0, p = 1, r = 0;
for(int i = 2; i <= n; ++i)
{
r = q + p;
q = p;
p = r;
}
return r;
//边界条件
/*
if(n <= 1) return n;
static vector<int> dp(n + 1, -1);
if(dp[n] != -1)
{
return dp[n];
}
if(dp[n - 1] == -1)
{
dp[n - 1] = fib(n - 1);
}
if(dp[n - 2] == -1)
{
dp[n - 2] = fib(n - 2);
}
for(auto & i : dp)
{
cout << i << " ";
}
cout << endl;
return dp[n - 1] + dp[n - 2];
*/
}
int main()
{
cout << fib(8) << endl;
return 0;
}