• 8.跳台阶


    一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法(先后次序不同算不同的结果)。

    思路:

    对于本题,前提只有 一次 1阶或者2阶的跳法。

    a.如果两种跳法,1阶或者2阶,那么假定第一次跳的是一阶,那么剩下的是n-1个台阶,跳法是f(n-1);

    b.假定第一次跳的是2阶,那么剩下的是n-2个台阶,跳法是f(n-2)

    c.由a假设可以得出总跳法为: f(n) = f(n-1) + f(n-2) 

    d.然后通过实际的情况可以得出:只有一阶的时候 f(1) = 1 ,只有两阶的时候可以有 f(2) = 2

    e.可以发现最终得出的是一个斐波那契数列:

            

                  | 1, (n=1)

    f(n) =     | 2, (n=2)

                  | f(n-1)+f(n-2) ,(n>2,n为整数)
    public class Solution {    
        public int JumpFloor(int target) {
            int a=1;
            int b=2;
            int c=target;
            for(int i=3;i<=target;i++){
                c=a+b;
                a=b;
                b=c;
            }
            return c;
        }   
    }

    回溯

    public class Solution {
        private int count;
        public int JumpFloor(int target) {
            count=0;
            int i=0;
            reJumpFloor(target,0);
            return count;
        }
        public void reJumpFloor(int target,int i){
            if(i>=target){
                if(i==target) {
                    count++;
                }
            }else{
                for(int k=1;k<=2;k++){
                    reJumpFloor(target,i+k);
                }
            }
        }
    }
  • 相关阅读:
    django第八天总结
    获取文件名的基本信息
    单个文件上传与多个文件上传
    return .php
    upload.php
    string.php
    upload.php
    upload.html
    获取上传文件
    那些年被我坑过的Python——牵一发动全身 第十一章MySQL、ORM
  • 原文地址:https://www.cnblogs.com/yihangZhou/p/10200212.html
Copyright © 2020-2023  润新知