摘要:时间浪费太多,不推荐。还可以用公式实现,我觉得就算了吧。
Problem
Find the Nth number in Fibonacci sequence.
A Fibonacci sequence is defined as follow:
The first two numbers are 0 and 1.
The i th number is the sum of i-1 th number and i-2 th number.
The first ten numbers in Fibonacci sequence is:
0, 1, 1, 2, 3, 5, 8, 13, 21, 34 ...Solution
class Solution { public int fibonacci(int n) { int[] f = new int[n + 2]; f[1] = 0; f[2] = 1; for (int i = 3; i <= n; i++) { f[i] = f[i - 1] + f[i - 2]; } return f[n]; } }
class Solution { public int fibonacci(int n) { if (n < 3) return n - 1; int first = 0; int second = 1; int third = 1; //its value doesn"t matter for (int i = 3; i <= n; i++) { third = first + second; first = second; second = third; } return third; } }
Recuision 时间浪费太多,不推荐。
class Solution { public int fibonacci(int n) { if (n == 1) return 0; if (n == 2) return 1; return fibonacci(n-1) + fibonacci(n-2); } }
还可以用公式实现,我觉得就算了吧。
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/65537.html
摘要:无需动规,无需额外空间,等同于菲波那切数列。当然噜,也可以动规,记住就好。 Problem You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can you ...
摘要:常规的使用来统计一段代码运行时间的例子输出结果总结其实是一门特别人性化的语言,但凡在工程中经常遇到的问题,处理起来比较棘手的模式基本都有对应的比较优雅的解决方案。 python的高级特性 名词与翻译对照表 generator 生成器 iterator 迭代器 collection 集合 pack/unpack 打包/解包 decorator 装饰器 context manager ...
摘要:初步认识装饰器函数装饰器用于在源代码中标记函数,以某种方式增强函数的行为。函数装饰器在导入模块时立即执行,而被装饰的函数只在明确调用时运行。只有涉及嵌套函数时才有闭包问题。如果想保留函数原本的属性,可以使用标准库中的装饰器。 《流畅的Python》笔记本篇将从最简单的装饰器开始,逐渐深入到闭包的概念,然后实现参数化装饰器,最后介绍标准库中常用的装饰器。 1. 初步认识装饰器 函数装饰...
摘要:函数表达式定义函数表达式区别于函数声明,也是一种定义函数的方式,形似与变量赋值,这个值就是函数体,例如函数表达式之匿名函数函数表达式之具名函数匿名函数之立即执行函数目前知道的是这三种形式,希望高人补充特点区别于函数声明,和普通变量一样使用前 函数表达式 定义:函数表达式区别于函数声明,也是一种定义函数的方式,形似与变量赋值,这个值就是函数体,例如: var a = function...
摘要:在上做了一道斐波那契数列求和的题目,做完之后做了一些简单的优化和用另一种方法实现。动态规划解决方案斐波那契数列求和除了可以用递归的方法解决,还可以用动态规划的方法解决。 在codewars上做了一道斐波那契数列求和的题目,做完之后做了一些简单的优化和用另一种方法实现。 题目 function fibonacci(n) { if(n==0 || n == 1) r...
阅读 2513·2023-04-26 01:44
阅读 2531·2021-09-10 10:50
阅读 1373·2019-08-30 15:56
阅读 2174·2019-08-30 15:44
阅读 483·2019-08-29 11:14
阅读 3400·2019-08-26 11:56
阅读 2965·2019-08-26 11:52
阅读 883·2019-08-26 10:27