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 兔子问题(斐波那契数列)扩展篇的更多相关文章
- Java迭代实现斐波那契数列
剑指offer第九题Java实现 题目: 大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项. public class Test9 { public static void ...
- Java练习 SDUT-1132_斐波那契数列
C/C++经典程序训练2---斐波那契数列 Time Limit: 1000 ms Memory Limit: 65536 KiB Problem Description 编写计算斐波那契(Fibon ...
- Java学习之斐波那契数列实现
描述 一个斐波那契序列,F(0) = 0, F(1) = 1, F(n) = F(n-1) + F(n-2) (n>=2),根据n的值,计算斐波那契数F(n),其中0≤n≤1000. 输入 输入 ...
- Python学习之斐波那契数列实现篇
描述 一个斐波那契序列,F(0) = 0, F(1) = 1, F(n) = F(n-1) + F(n-2) (n>=2),根据n的值,计算斐波那契数F(n),其中0≤n≤1000. 输入 输入 ...
- (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 ...
- 简单Java算法程序实现!斐波那契数列函数~
java编程基础--斐波那契数列 问题描述:一只青蛙一次可以跳上1级台阶,也可以跳上2级.求该青蛙跳上一个n级的台阶总共有多少种跳法. 思路:可能出现的情况:(1) n=1 ,一种方法 ;(2)n=2 ...
- 斐波那契数列 的两种实现方式(Java)
import java.util.Scanner; /* 斐波那契数列:0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ... 如果设F(n)为该数列的第n ...
- java大数 斐波那契数列
java大数做斐波那契数列: 思路:1. 2.可以用数组存着 import java.math.BigInteger; import java.util.Scanner; public ...
- 《剑指offer》第十题(斐波那契数列)
// 面试题:斐波那契数列 // 题目:写一个函数,输入n,求斐波那契(Fibonacci)数列的第n项. #include <iostream> using namespace std; ...
- Java经典案例之-判断兔子的数量(斐波那契数列)
/** * 描述:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第四个月后每个月又生一对兔子, * 假如兔子都不死,问每个兔子总数为多少? * 分析:根据题目条件可以推断 * 兔子的规律 ...
随机推荐
- vc调试大全
一.调试基础 调试快捷键 F5: 开始调试 Shift+F5: 停止调试 F10: 调试到下一句,这里是单步跟踪 F11: 调试到下一句,跟进函数内部 Shift+F11: 从当前函数中跳 ...
- 转:深入 AngularUI Router
原文地址:http://www.ng-newsletter.com/posts/angular-ui-router.html ui-router: https://angular-ui.github. ...
- mongodb权限机制以及扩展
mongodb权限机制 启动权限机制之前要先在MONGODB中添加管理员账号: 1. 创建账号 重装安装一个mongodb,安装时添加一个 --auth参数: 先把安装好的从服务中删除掉(删除之后数据 ...
- xtu数据结构 D. Necklace
D. Necklace Time Limit: 5000ms Memory Limit: 32768KB 64-bit integer IO format: %I64d Java class ...
- ES6 Arrow Function & this bug
ES6 Arrow Function & this bug let accHeadings = document.querySelectorAll(`.accordionItemHeading ...
- BZOJ 4516 [Sdoi2016]生成魔咒 ——后缀自动机
本质不同的字串,考虑SA的做法,比较弱,貌似不会. 好吧,只好用SAM了,由于后缀自动机的状态最简的性质, 所有不同的字串就是∑l[i]-l[fa[i]], 然后后缀自动机是可以在线的,然后维护一下就 ...
- 刷题总结——竞赛得分(ssoj)
题目: 题目描述 ZZH 在经历了无数次学科竞赛的失败以后,得到了一个真理:做一题就要对一题!但是要完全正确地做对一题是要花很多时间(包括调试时间),而竞赛的时间有限.所以开始做题之前最好先认真审题, ...
- jenkins使用流程
jenkins使用流程 看下面那个连接的吧. http://www.cnblogs.com/zz0412/p/jenkins02.html 1.设置git库 2.点击add添加github用户名.密码 ...
- 自己写的java返回结果集封装
import java.io.Serializable; import com.fasterxml.jackson.core.JsonProcessingException; import com.f ...
- Chapter 4-5
1.切片对象 sequence[起始索引:结束索引:步进值] 对象身份的比较 is /is not 2.eval()参数是一个字符串, 可以把这个字符串当成表达式来求值. >>>x ...