python中斐波那契数列_斐波那契数列–在Python,JavaScript,C ++,Java和Swift中进行了解释...

python中斐波那契数列

by Pau Pavón

通过保罗·帕文(PauPavón)

The Fibonacci sequence is, by definition, the integer sequence in which every number after the first two is the sum of the two preceding numbers. To simplify:

根据定义,斐波那契数列是整数序列,其中前两个后的每个数字都是前两个数之和。 为了简化:

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, …

0、1、1、2、3、5、8、13、21、34、55、89、144,...

It has many applications in mathematics and even trading (yes, you read that right: trading), but that’s not the point of this article. My goal today is to show you how you can compute any term of this series of numbers in five different programming languages using recursive functions.

它在数学甚至交易中都有许多应用(是的,您没看错:交易),但这不是本文的重点。 我今天的目标是向您展示如何使用递归函数以五种不同的编程语言计算该系列数字的任何项。

Recursive functions are those functions which, basically, call themselves.

递归函数是那些基本上会调用自己的函数。

I want to note that this isn’t the best method to do it — in fact, it could be considered the most basic method for this purpose. This is because the computing power required to calculate larger terms of the series is immense. The number of times the function is called causes a stack overflow in most languages.

我要指出,这不是最好的方法-实际上,可以将其视为实现此目的的最基本方法。 这是因为计算较大序列项所需的计算能力非常大。 在大多数语言中,调用函数的次数导致堆栈溢出。

All the same, for the purposes of this tutorial, let’s begin.

出于相同的目的,就本教程而言,我们开始吧。

First of all, let’s think about what the code is going to look like. It’ll include:

首先,让我们考虑一下代码的外观。 其中包括:

· A recursive function F (F for Fibonacci): to compute the value of the next term.

·递归函数F(斐波纳契数为F):计算下一项的值。

· Nothing else: I warned you it was quite basic.

·没有别的:我警告过你,这很基本。

Our function will take n as an input, which will refer to the nth term of the sequence that we want to be computed. So, F(4) should return the fourth term of the sequence.

我们的函数将以n作为输入,它将引用我们要计算的序列的第n个项。 因此,F(4)应该返回序列的第四项。

Let’s plan it. The code should, regardless the language, look something like this:

让我们计划一下。 无论使用哪种语言,代码都应如下所示:

function F(n)  if n = 0    return 0  if n = 1    return 1  else    return F(n-1) + F(n-2)

function F(n) if n = 0 return 0 if n = 1 return 1 else return F(n-1) + F(n-2)

Note: the term 0 of the sequence will be considered to be 0, so the first term will be 1; the second, 1; the third, 2; and so on. You get it.

注意:序列中的项0将被视为0,因此第一个项将是1; 第二个,1; 第三,2; 等等。 你懂了。

Let’s analyze the function for a moment. If it gets 0 as an input, it returns 0. If it gets 1, it returns 1. If it gets 2… Well, in that case it falls into the else statement, which will call the function again for terms 2–1 (1) and 2–2 (0). That will return 1 and 0, and the two results will be added, returning 1. Perfect.

让我们分析一下功能。 如果它的输入为0,则返回0。如果它为1,则返回1。如果它为2,那么……在这种情况下,它属于else语句,它将再次为函数2–1( 1)和2–2(0)。 那将返回1和0,并且将两个结果相加,返回1.完美。

Now you can see why recursive functions are a problem in some cases. Imagine you wanted the 100th term of the sequence. The function would call itself for the 99th and the 98th, which would themselves call the function again for the 98th and 97th, and 97th and 96th terms…and so on. It would be really slow.

现在您可以了解为什么在某些情况下递归函数会成为问题。 假设您想要序列的第100个术语。 该函数将自己调用第99位和第98位,而它们本身将再次调用该函数分别调用第98和97位,第97和96位……等等。 真的很慢。

But the good news is that it actually works!

但是好消息是它确实有效!

So let’s start with the different languages. I won’t give too much detail (actually, no detail at all) to make your reading experience better. There isn’t too much to detail anyways.

因此,让我们从不同的语言开始。 我不会提供太多细节(实际上根本没有任何细节),以使您的阅读体验更好。 无论如何,没有太多细节可言。

Let’s jump into it:

让我们跳进去:

Python (Python)

def F(n):  if n == 0:    return 0  if n == 1:    return 1  else:    return F(n-1) + F(n-2)

def F(n): if n == 0: return 0 if n == 1: return 1 else: return F(n-1) + F(n-2)

Swift (Swift)

func F(_ n: Int) -> Int {  if n == 0 {    return 0  }  if n == 1 {    return 1  }  else {    return F(n-1) + F(n-2)  }}

func F(_ n: Int) -> Int { if n == 0 { return 0 } if n == 1 { return 1 } else { return F(n-1) + F(n-2) }}

JavaScript (JavaScript)

function F(n) {  if(n == 0) {    return 0;  }  if(n == 1) {    return 1;  }  else {    return F(n-1) + F(n-2);  }}

function F(n) { if(n == 0) { return 0; } if(n == 1) { return 1; } else { return F(n-1) + F(n-2); }}

Java (Java)

public static int F(int n) {  if(n == 0) {    return 0;  }  if(n == 1) {    return 1;  }  else {    return F(n-1) + F(n-2);  }}

public static int F(int n) { if(n == 0) { return 0; } if(n == 1) { return 1; } else { return F(n-1) + F(n-2); }}

C ++ (C++)

int F(int n) {  if(n == 0) {    return 0;  }  if(n == 1) {    return 1;  }  else {    return F(n-1) + F(n-2);  }}

int F(int n) { if(n == 0) { return 0; } if(n == 1) { return 1; } else { return F(n-1) + F(n-2); }}

And that’s it. I chose these languages just based on popularity — or at least because these 5 are the most common ones that I use They’re in no particular order. They could be classified by syntax difficulty, in my opinion, from Python (easiest) to C++ (hardest). But that depends on your personal opinion and your experience with each language.

就是这样。 我只是根据流行程度选择了这些语言-或至少因为这5种语言是我使用的最常见语言,所以它们的排列顺序没有特定关系。 在我看来,可以按照语法难度对它们进行分类,从Python(最简单)到C ++(最困难)。 但这取决于您的个人意见和您对每种语言的经验。

I hope you liked this article and, if you have any questions/recommendations or just want to say hi, comment below!

我希望您喜欢这篇文章,如果您有任何疑问/建议,或者只是想打个招呼,请在下面评论!

翻译自: https://www.freecodecamp.org/news/the-fibonacci-sequence-in-5-different-programming-languages-1c6514c749e5/

python中斐波那契数列

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/390314.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

1583. 统计不开心的朋友

1583. 统计不开心的朋友 给你一份 n 位朋友的亲近程度列表,其中 n 总是 偶数 。 对每位朋友 i,preferences[i] 包含一份 按亲近程度从高到低排列 的朋友列表。换句话说,排在列表前面的朋友与 i 的亲近程度比排在列表后面的朋友更高。每个列…

uva 247(floyd传递闭包)

为什么&#xff0c;逗号后面&#xff0c;还有空格........ #include <iostream> #include <cstring> #include <algorithm> #include <cstdio> #include <vector> #include <map> using namespace std; const int maxn50; int d[maxn][max…

VS Code 的常用快捷键和插件

注:文章摘自 风行天下一万号 - 博客园 vs code 的常用快捷键 1、注释&#xff1a; 单行注释&#xff1a;[ctrlk,ctrlc] 或 ctrl/取消单行注释&#xff1a;[ctrlk,ctrlu] (按下ctrl不放&#xff0c;再按k u)多行注释&#xff1a;[altshiftA]多行注释&#xff1a;/**2、移动行&a…

python包numpy_NumPy Python科学计算软件包的终极指南

python包numpyNumPy (pronounced "numb pie") is one of the most important packages to grasp when you’re starting to learn Python.NumPy(读作“麻木派”)是您开始学习Python时要掌握的最重要的软件包之一。 The package is known for a very useful data str…

NGINX原理 之 SLAB分配机制(转)

1 引言 众所周知&#xff0c;操作系统使用伙伴系统管理内存&#xff0c;不仅会造成大量的内存碎片&#xff0c;同时处理效率也较低下。SLAB是一种内存管理机制&#xff0c;其拥有较高的处理效率&#xff0c;同时也有效的避免内存碎片的产生&#xff0c;其核心思想是预分配。其按…

apk之间数据共享的方式

1、四大组件之ContentProvider大法2、shareUserId3、apk均去远端获取配置文件&#xff08;或接口&#xff09;4、AIDL&#xff08;bindService&#xff09;5、SharePreference设置为MODE_WORLD_READABLE|MODE_WORLD_WRITEABLE模式&#xff0c;由于存在安全问题&#xff0c;已被…

蓝桥杯java 基础练习 十六进制转十进制

问题描述从键盘输入一个不超过8位的正的十六进制数字符串&#xff0c;将它转换为正的十进制数后输出。注&#xff1a;十六进制数中的10~15分别用大写的英文字母A、B、C、D、E、F表示。样例输入FFFF样例输出65535import java.math.BigInteger; import java.util.Scanner;public …

dynamic web module消失不见

2019独角兽企业重金招聘Python工程师标准>>> 方法1&#xff1a;在project Facets选项中勾选Dynamic Web Module即可 方法2&#xff1a; 我用eclipse对项目进行修改名称&#xff0c;修改成功后。项目就没有Deployment Descriptor&#xff08;如下图红色框中&#xff…

576. 出界的路径数

576. 出界的路径数 给你一个大小为 m x n 的网格和一个球。球的起始坐标为 [startRow, startColumn] 。你可以将球移到在四个方向上相邻的单元格内&#xff08;可以穿过网格边界到达网格之外&#xff09;。你 最多 可以移动 maxMove 次球。 给你五个整数 m、n、maxMove、star…

telnet命令发送邮件

下面的例子是用qq的smtp服务器。 set localecho 本地回显启用 telnet smtp.qq.com 25 220 smtp.qq.com Esmtp QQ Mail Server helo sis 250 smtp.qq.com//服务器返回250 smtp.qq.com STARTTLS 220 Ready to start TLS//服务器返回 220 准备开启TLS通讯 auth login 334 VXNlcm5h…

myelcipse和maven搭建项目

偷懒一下&#xff0c;完了补充 转载&#xff1a;https://www.cnblogs.com/jr1260/p/6438811.html https://www.cnblogs.com/yangmingyu/p/6908519.html https://www.cnblogs.com/henuyuxiang/p/6288476.html 转载于:https://www.cnblogs.com/0914lx/p/8342343.html

551. 学生出勤记录

551. 学生出勤记录 I 给你一个字符串 s 表示一个学生的出勤记录&#xff0c;其中的每个字符用来标记当天的出勤情况&#xff08;缺勤、迟到、到场&#xff09;。记录中只含下面三种字符&#xff1a; ‘A’&#xff1a;Absent&#xff0c;缺勤 ‘L’&#xff1a;Late&#xff…

JavaScript实现职责链模式

什么是职责链模式 职责链模式的定义是&#xff1a;使多个对象都有机会处理请求&#xff0c;从而避免请求的发送者和接收者之间的耦合关系&#xff0c;将这些对象连成一条链&#xff0c;并沿着这条链传递该请求&#xff0c;直到有一个对象处理它为止。举个例子&#xff1a;当你从…

Metrics介绍和Spring的集成

参考&#xff1a; http://colobu.com/2014/08/08/Metrics-and-Spring-Integration/ https://www.cnblogs.com/yangecnu/p/Using-Metrics-to-Profiling-WebService-Performance.html

配置 aws cli_AWS CLI教程–如何安装,配置和使用AWS CLI了解您的资源环境

配置 aws cliHow to get exactly the account and environment information you need to manage your AWS account using just the AWS CLI如何仅使用AWS CLI准确获取管理AWS账户所需的账户和环境信息 Installing the AWS CLI is actually quite simple. The best way to get …

grep递归查找头文件_Grep命令教程–如何使用递归查找在Linux和Unix中搜索文件

grep递归查找头文件grep stands for Globally Search For Regular Expression and Print out. It is a command line tool used in UNIX and Linux systems to search a specified pattern in a file or group of files. grep代表全局搜索正则表达式并打印出来 。 它是UNIX和Li…

C++ 前置声明

&#xff08;一&#xff09;class的前置声明 class的前置声明有两种。 pre.hclass PreA {}; main.hclass PreA; class Main {};//或者 class Main {class PreA* A; }; (二) struct前置声明 struct的前置声明只能用第一种。 &#xff08;三&#xff09; 有typedef的前置声明 Pr…

2.18 特殊权限set_uid 2.19 特殊权限set_gid 2.20 特殊权限stick_bit 2.21 软链接文件 2.22 硬连接文件...

2019独角兽企业重金招聘Python工程师标准>>> 特殊权限set_uid set_uid:该权限针对二进制可执行文件&#xff0c;使文件在执行阶段具有文件所有者的权限&#xff1b; 通俗一点讲就是&#xff0c;普通用户想要访问一个没有其他用户可执行权限的目录时&#xff0c;暂时…

345. 反转字符串中的元音字母

345. 反转字符串中的元音字母 给你一个字符串 s &#xff0c;仅反转字符串中的所有元音字母&#xff0c;并返回结果字符串。 元音字母包括 ‘a’、‘e’、‘i’、‘o’、‘u’&#xff0c;且可能以大小写两种形式出现。 示例 1&#xff1a; 输入&#xff1a;s “hello” 输…

通过制作数字桌面游戏和Web应用程序学习JavaScript

Building 2D games can be a great way to learn JavaScript, especially when working through the basics of complex tabletop game logic.制作2D游戏可能是学习JavaScript的好方法&#xff0c;尤其是在研究复杂的桌面游戏逻辑基础时。 In this series, I’m going to intr…