《剑指offer》递归和迭代三道题:8 9 10斐波那契数列&(变态)跳台阶

题目一 斐波那契数列

牛客网链接 :斐波那契数列

大家都知道斐波那契数列,现在要求输入一个整数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;
        }   
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值