当前位置:网站首页>Kotlin Algorithm Getting Started with Rabbit Number Optimization and Expansion
Kotlin Algorithm Getting Started with Rabbit Number Optimization and Expansion
2022-08-11 08:13:00 【Yi Pangzhou】
/* 古典问题:3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少? 分析:首先我们要明白题目的意思指的是每个月的兔子总对数;假设将兔子分为小中大三种,兔子从出生后三个月后每个月就会生出一对兔子, 那么我们假定第一个月的兔子为小兔子,第二个月为中兔子,第三个月之后就为大兔子,那么第一个月分别有1、0、0,第二个月分别为0、1、0, 第三个月分别为1、0、1,第四个月分别为,1、1、1,第五个月分别为2、1、2,第六个月分别为3、2、3,第七个月分别为5、3、5…… 兔子总数分别为:1、1、2、3、5、8、13…… 于是得出了一个规律,从第三个月起,后面的兔子总数都等于前面两个月的兔子总数之和,即为斐波那契数列.*/ class RabbitNumber { private var rabbits: Long = 1 private var lastSecondRabbits: Long = 0 private var lastRabbits: Long = 0 /** * Traverse from the first month to the firstn个月的兔子总数 */ fun forEachMothsToRabbits(moths: Int) { println(System.currentTimeMillis()) for (i in 1..moths) println("第" + i + "个月兔子数为" + getRabbits(i)) println(System.currentTimeMillis()) } /** * Get the total number of rabbits for the current month */ private fun getRabbits(moths: Int): Long { if (moths == 1 || moths == 2) return rabbits = 1 else if (moths == 3) return rabbits = 2 else { //Initialize the number of rabbits in the last month and the last two months if (lastRabbits == 0L && lastSecondRabbits == 0L) { lastSecondRabbits = getRabbits(moths - 2) lastRabbits = getRabbits(moths - 1) } //Count the number of rabbits returned by this one rabbits = lastRabbits + lastSecondRabbits /*Let the number of rabbits in two months equal the number of rabbits in the previous month,Let last month equal the number of rabbits in this month 为了下一次计算(Number of rabbits next month)More efficient and faster to avoid redundant recursion affecting the calculation speed*/ lastSecondRabbits = lastRabbits lastRabbits = rabbits return rabbits } } }
边栏推荐
猜你喜欢

进阶-指针

【云原生】云原生在网络安全领域的应用

The growth path of a 40W test engineer with an annual salary, which stage are you in?

1076 Wifi Password (15 points)

笔试题大疆08.07

magical_spider远程采集方案

Analysys and the Alliance of Small and Medium Banks jointly released the Hainan Digital Economy Index, so stay tuned!

leetcode: 69. Square root of x

Nuget找不到包的问题处理

支持各种文件快速重命名最简单的小技巧
随机推荐
Mysql JSON对象和JSON数组查询
关于架构的认知
初级软件测试工程师笔试试题,你知道答案吗?
Hibernate 的 Session 缓存相关操作
零基础SQL教程: 基础查询 05
软件测试常用工具的用途及优缺点比较(详细)
Two startup methods and differences of Service
2022-08-10 mysql/stonedb-慢SQL-Q16-耗时追踪
笔试题大疆08.07
零基础SQL教程: 主键、外键和索引 04
C Primer Plus(6) 中文版 第1章 初识C语言 1.7 使用C语言的7个步骤
kali渗透测试环境搭建
支持各种文件快速重命名最简单的小技巧
8、Mip-NeRF
IDEA的初步使用
Two state forms of Service
Unity3D——自定义类的Inspector面板的修改
JUC Concurrent Programming
1.2 - error sources
Kotlin算法入门求自由落体