题目一 斐波那契数列
牛客网链接 :斐波那契数列
大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项。
递归解法
class Solution {
public:
int Fibonacci(int n) {
if(n<=0)
{
return 0;
}
else if(n<3)
{
return 1;
}
else
{
return Fibonacci(n-1)+Fibonacci(n-2);
}
}
};
非递归解法
int Fibonacci(int n) {
int result = 0;
int nextItem = 1;
for(int i=1;i<=n;i++)
{
int tmp = nextItem;
nextItem += result;
result =tmp;
}
return result;
}
题目二 跳台阶
牛客网链接 :跳台阶
题目:一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法(先后次序不同算不同的结果)。
递归解法
class Solution {
public:
int jumpFloor(int n) {
if(n == 0 || n == 1)
return 1;
else
return jumpFloor(n-1) + jumpFloor(n-2);
}
};
非递归解法
class Solution {
public:
int jumpFloor(int n) {
if(n <= 0 || n == 1)
return 1;
else if(n == 2 || n == 3)
return n;
else{
int f1 = 1, f2 = 2;
int f3=0;
for(int i = 3; i<=n; i++)
{
f3 = f1 + f2;
f1 = f2;
f2 = f3;
}
return f3;
}
}
};
题目三 变态跳台阶
牛客网链接:变态跳台阶
题目:一只青蛙一次可以跳上1级台阶,也可以跳上2级……它也可以跳上n级。求该青蛙跳上一个n级的台阶总共有多少种跳法。
递归解法
class Solution {
public:
int jumpFloorII(int n) {
if(n<=2)
return n;
else
return 2*jumpFloorII(n - 1);
}
};
非递归解法
class Solution {
public:
int jumpFloorII(int n) {
if(n<=2)
return n;
else
{
int res = 1;
for(int i = 0; i< n - 1; i++)
res*=2;
return res;
}
}
};