Java兔子问题(斐波那契数列)扩展篇

斐波那契数列指的是这样一个数列 0, 1, 1, 2,3, 5, 8, 13, 21, 34, 55, 89, 144, ...对于这个数列仅仅能说将兔子生产周期第为3月。假设生成周期变成4月这个数列肯定不是这种,或者说兔子还有死亡周期,在这里我是对兔子生产周期没有限定。仅仅要月份大于生产周期都能够计算出第month月份究竟能产生多少对兔子。

Java兔子生殖问题

斐波那契数列又因数学家列昂纳多·斐波那契以兔子生殖为样例而引入。故又称为“兔子数列”。

一般而言,兔子在出生两个月后。就有生殖能力。一对兔子每一个月能生出一对小兔子来。假设全部兔子都不死,那么一年以后能够生殖多少对兔子?

我们最好还是拿新出生的一对小兔子分析一下:

第一个月小兔子没有生殖能力,所以还是一对

两个月后,生下一对小兔对数共同拥有两对

三个月以后。老兔子又生下一对。由于小兔子还没有生殖能力。所以一共是三对。

------

依次类推能够列出下表:

经过月数

0

1

2

3

4

5

6

7

8

9

10

11

12

幼仔对数

1

0

1

1

2

3

5

8

13

21

34

55

89

成兔对数

0

1

1

2

3

5

8

13

21

34

55

89

144

整体对数

1

1

2

3

5

8

13

21

34

55

89

144

233

幼仔对数=前月成兔对数

成兔对数=前月成兔对数+前月幼仔对数

整体对数=本月成兔对数+本月幼仔对数

能够看出幼仔对数、成兔对数、整体对数都构成了一个数列。这个数列有关十分明显的特点,那是:前面相邻两项之和,构成了后一项。

这个数列是意大利中世纪数学家斐波那契在<算盘全书>中提出的。这个级数的通项公式,除了具有a(n+2)=an+a(n+1)的性质外,还能够证明通项公式为:an=(1/√5)*{[(1+√5)/2]^n-[(1-√5)/2]^n}(n=1,2,3.....)。

JavaCode:

/*

* System Abbrev :

* system Name  :

* Component No  :

* Component Name:

* File name     :FabonacciSequence.java

* Author        :Peter.Qiu

* Date          :Aug 25, 2014

* Description   :  <description>

*/

/* Updation record 1:

* Updation date        :  Aug 25, 2014

* Updator          :  Peter.Qiu

* Trace No:  <Trace No>

* Updation No:  <Updation No>

* Updation Content:  <List all contents of updation and all methods updated.>

*/

package com.qiuzhping.util.interesting;

/**

* <Description functions in a word>

* <Detail description>

*

* @author  Peter.Qiu

* @version  [Version NO, Aug 25, 2014]

* @see  [Related classes/methods]

* @since  [product/module version]

*/

public class FabonacciSequence {

private static FabonacciSequence util = null;

/** <default constructor>

*/

public FabonacciSequence() {

// TODO Auto-generated constructor stub

}

/** <Description functions in a word>

* Aug 25, 2014

* <Detail description>

* @author  Peter.Qiu

* @param args [Parameters description]

* @return void [Return type description]

* @exception throws [Exception] [Exception description]

* @see [Related classes#Related methods#Related properties]

*/

public static void main(String[] args) {

long month = 8;

long product = 4;

long start = System.currentTimeMillis();

//            System.out.println(" fabonacci  \trabbit : "+getInstance().fabonacci(month));

//            System.out.println(" take times = "+(System.currentTimeMillis() - start)/1000);

//            System.out.println("--------------------------------------");

//            System.out.println(" fabonacci1 \trabbit : "+getInstance().fabonacci1(month));

//            System.out.println(" take times = "+(System.currentTimeMillis() - start)/1000);

//            System.out.println("--------------------------------------");

//            System.out.println(" fabonacci2 \trabbit : "+getInstance().fabonacci2(month,product));

//            System.out.println(" take times = "+(System.currentTimeMillis() - start)/1000);

for(long i = product; i <= month; i++){

System.out.println("month = "+i+"\tfabonacci2 \trabbit : "+getInstance().fabonacci2(i,product));

}

}

public static FabonacciSequence getInstance() {

if (util == null) {

util = new FabonacciSequence();

}

return util;

}

/** <Description functions in a word>

*pruduct month = 3<BR>

* Aug 25, 2014

* <Detail description>

* @author  Peter.Qiu

* @param month : How many months.

* @return [Parameters description]

* @return long [Return type description]

* @exception throws [Exception] [Exception description]

* @see [Related classes#Related methods#Related properties]

*/

public long fabonacci(long month) {

if (!(month < 3)) {

for (long i = 3; i <= month;) {

return fabonacci(month - 1) + fabonacci(month - 2);

}

}

return 1;

}

/** <Description functions in a word>

* pruduct month = 3<BR>

* Aug 25, 2014

* <Detail description>

* @author  Peter.Qiu

* @param month :How many months.

* @return [Parameters description]

* @return long [Return type description]

* @exception throws [Exception] [Exception description]

* @see [Related classes#Related methods#Related properties]

*/

public long fabonacci1(long month) {

long sum = 1, lastMonth = 1, lastLastMonth = 1;

if (!(month < 3)) {

for (long i = 3; i <= month; i++) {

lastLastMonth = lastMonth;

lastMonth = sum;

sum = lastLastMonth + lastMonth;

}

}

return sum;

}

/** <Description functions in a word>

* Aug 25, 2014

* <Detail description>

* @author  Peter.Qiu

* @param month:How many months.

* @param pruductMonth:The production cycle.

* @return [Parameters description]

* @return long [Return type description]

* @exception throws [Exception] [Exception description]

* @see [Related classes#Related methods#Related properties]

*/

public long fabonacci2(long month, long pruductMonth) {

long sum = 1;

if (!(month < pruductMonth)) {

for (long i = 0,j = pruductMonth - 1; i < month - (pruductMonth - 1); i++) {

sum += fabonacci2(month - j - i, pruductMonth);

}

}

return sum;

}

}

以上这些算法都没有应用到面向对象的思维方式去解决,假设生成周期变成4月这个数列肯定不是这种,或者说兔子还有死亡周期,在这里我是对兔子生产周期没有限定,仅仅要月份大于生产周期都能够计算出第month月份究竟能产生多少对兔子。实际中能够将兔子定于为一个Rabbit对象,将其生产周期、死亡周期定义为属性。可能这个能有更好的效果。

Java 兔子问题(斐波那契数列)扩展篇的更多相关文章

  1. Java迭代实现斐波那契数列

    剑指offer第九题Java实现 题目: 大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项. public class Test9 { public static void ...

  2. Java练习 SDUT-1132_斐波那契数列

    C/C++经典程序训练2---斐波那契数列 Time Limit: 1000 ms Memory Limit: 65536 KiB Problem Description 编写计算斐波那契(Fibon ...

  3. Java学习之斐波那契数列实现

    描述 一个斐波那契序列,F(0) = 0, F(1) = 1, F(n) = F(n-1) + F(n-2) (n>=2),根据n的值,计算斐波那契数F(n),其中0≤n≤1000. 输入 输入 ...

  4. Python学习之斐波那契数列实现篇

    描述 一个斐波那契序列,F(0) = 0, F(1) = 1, F(n) = F(n-1) + F(n-2) (n>=2),根据n的值,计算斐波那契数F(n),其中0≤n≤1000. 输入 输入 ...

  5. (java版)斐波那契数列

    用JAVA编写Fibonacei(1,1,2,3,5,8,13...)数列的第n项 分析:当n=1时,a(n)=1;当n=2时 ,a(n)=2. 所以当n=>3时,a(n)=a(n-1)+a(n ...

  6. 简单Java算法程序实现!斐波那契数列函数~

    java编程基础--斐波那契数列 问题描述:一只青蛙一次可以跳上1级台阶,也可以跳上2级.求该青蛙跳上一个n级的台阶总共有多少种跳法. 思路:可能出现的情况:(1) n=1 ,一种方法 ;(2)n=2 ...

  7. 斐波那契数列 的两种实现方式(Java)

    import java.util.Scanner; /* 斐波那契数列:0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ... 如果设F(n)为该数列的第n ...

  8. java大数 斐波那契数列

    java大数做斐波那契数列:  思路:1.       2.可以用数组存着 import java.math.BigInteger; import java.util.Scanner; public ...

  9. 《剑指offer》第十题(斐波那契数列)

    // 面试题:斐波那契数列 // 题目:写一个函数,输入n,求斐波那契(Fibonacci)数列的第n项. #include <iostream> using namespace std; ...

  10. Java经典案例之-判断兔子的数量(斐波那契数列)

    /** * 描述:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第四个月后每个月又生一对兔子, * 假如兔子都不死,问每个兔子总数为多少? * 分析:根据题目条件可以推断 * 兔子的规律 ...

随机推荐

  1. python之动态参数 *args,**kwargs(聚合,打散)

    一.函数的动态参数 *args,**kwargs, 形参的顺序1.你的函数,为了拓展,对于传入的实参数量应该是不固定,所以就需要用到万能参数,动态参数,*args, **kwargs 1,*args  ...

  2. 对Thymeleaf的一些笼统介绍和理解

    (随手记录的,,可能没那么易看,sorry le) 先大概介绍一下关于Thymeleaf的概念和理解:首先Thymeleaf模板引擎(换句话说他是现代服务器端的Java模板引擎,) 他所对应的主要作用 ...

  3. Java-从字符串或一个子字符串中搜索一个字符

    indexOf函数 package com.tj; public class MyClass implements Cloneable { public static void main(String ...

  4. linux下连接到远程主机,用图像界面(想在远程服务器上用cmake)

    1. 需要通过SSH -X username@ip登陆服务器后,再用图形界面,比如用cmake 2.直接用 SSH username@ip命令登陆服务器后,不能用cmake

  5. numpy.clip(a, a_min, a_max, out=None)(values < a_min are replaced with a_min, and those > a_max with a_max.)

    numpy.clip(a, a_min, a_max, out=None) Clip (limit) the values in an array. Given an interval, values ...

  6. 命令行-s的意思

    -s,signal,意思就是信号,一般是发送信号. 如: # 关闭 nginx -s stop;

  7. 【Luogu】P3414组合数(快速幂)

    题目链接 从n的元素中选零个,选一个,选两个,选三个...选n个的方案数和,其实就是n个元素中取任意多个元素的方案数,那对于每一个元素,都有取或不取两种情况,所以方案数最终为2^n个. #includ ...

  8. bzoj3743 [Coci2015]Kamp 常州模拟赛d6t2

    3743: [Coci2015]Kamp Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 484  Solved: 229[Submit][Status ...

  9. P1651 塔 (动态规划)

    题目描述 小明很喜欢摆积木,现在他正在玩的积木是由N个木块组成的,他想用这些木块搭出两座高度相同的塔,一座塔的高度是搭建它的所有木块的高度和,并且一座塔至少要用一个木块.每个木块只能用一次,也可以不用 ...

  10. Python脚本实现单据体首行过滤

    编写的Python脚本 可以看到,实际代码只有3句,即实现单据体首行过滤代码(其实最最主要的是无需写组件动态即时注册),并有注册到[采购订单]"表单构建插件"上.界面运行时,实际效 ...