搜索资源列表

  1. 斐波那契数列

    0下载:
  2. 斐波那契数列 的问题,感觉不错。,-Fibonacci series, feeling good. ,
  3. 所属分类:WEB源码

    • 发布日期:2008-10-13
    • 文件大小:2035
    • 提供者:程显志
  1. 斐波那契数列算法

    0下载:
  2. 斐波那契数列算法,附两种不同的源代码
  3. 所属分类:源码下载

    • 发布日期:2011-07-11
    • 文件大小:530
    • 提供者:xyz543
  1. 斐波那契数列

    0下载:
  2. 斐波那契数列 的问题,感觉不错。,-Fibonacci series, feeling good. ,
  3. 所属分类:文档资料

    • 发布日期:2024-04-17
    • 文件大小:2048
    • 提供者:
  1. fibonacci_2

    0下载:
  2. 本程序是用备忘录法实现计算斐波那契数列,大大缩短了运算时间。-This procedure is the realization of Memorandum of Law calculated the Fibonacci sequence, greatly reducing the computing time.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-04-17
    • 文件大小:1024
    • 提供者:djz
  1. fbnq

    0下载:
  2. 已知斐波那契数列的定义:F(1)=1,F(2)=1,F(i)= F(i-1)+ F(i-2) (i>=3),编写求该数列前n项的子程序 实现了输入一个数,然后将计算的结果保存在存储器中-Known Fibonacci sequence definition: F (1) = 1, F (2) = 1, F (i) = F (i-1)+ F (i-2) (i> = 3), preparation for the seri
  3. 所属分类:汇编语言

    • 发布日期:2024-04-17
    • 文件大小:1024
    • 提供者:yd
  1. FIB

    0下载:
  2. 通过Linux多线程实现斐波那契数列,适合Linux编程入门者。(The realization of multi-threaded Linux Fibonacci sequence)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-04-17
    • 文件大小:1024
    • 提供者:光谷华
  1. 输出斐波那契数列前 n项

    0下载:
  2. 通过输入数值n,输出斐波那契数列前 n项(Through the numerical input n, output Fibonacci numbers before the n)
  3. 所属分类:其他小程序

    • 发布日期:2024-04-17
    • 文件大小:6144
    • 提供者:yanyanyan
  1. 韩信点兵

    0下载:
  2. 验证斐波那契数列 波波各方面各式各样特vjjfulj规范国家规定下雨(fdb sd fngn etf dbd db tbgf vxf erv dt yth)
  3. 所属分类:其他小程序

    • 发布日期:2024-04-17
    • 文件大小:38912
    • 提供者:张继斌
  1. 菲波那契数列

    0下载:
  2. //指的是这样一个数列: 1,1,2,3,5,8,13,21…… //这个数列从第三项开始,每一项都等于前两项之和(refers to such a sequence: 1, 1, 2, 3, 5, 8, 13, 21...... This series from the beginning of the third /, each of which is equal to the sum of the preceding two
  3. 所属分类:其他小程序

    • 发布日期:2024-04-17
    • 文件大小:6144
    • 提供者:aliflcat
  1. Fibonacci Numbers

    0下载:
  2. 用C++函数对斐波那契数列进行求解,入门级算法,适合掌握(In c + + function to solve the Fibonacci sequence, entry-level algorithm, suitable for control)
  3. 所属分类:其他小程序

    • 发布日期:2024-04-17
    • 文件大小:9216
    • 提供者:自牧归荑
  1. 01 斐波那契数列

    0下载:
  2. 斐波那契数列程序的实现方式,C++程序。。。。。。。(The Fibonacci program)
  3. 所属分类:Windows编程

    • 发布日期:2024-04-17
    • 文件大小:2048
    • 提供者:曹正纲
  1. 斐波那契数列 (2)

    0下载:
  2. 斐波那契数列初步入门学习、了解,对语言的进一步了解有很大的帮助(The Fibonacci rudiments of learning, understanding, is of great help to further understand the language)
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-04-17
    • 文件大小:8192
    • 提供者:小海子_666
  1. 斐波那契数列

    0下载:
  2. 计算斐波那契数列求和的简单c语言程序,喜欢的朋友可以下载看看(it is an easy program to calculate Fibonacci sequence)
  3. 所属分类:Internet/网络编程

    • 发布日期:2024-04-17
    • 文件大小:114688
    • 提供者:26shan
  1. 斐波那契数

    0下载:
  2. 斐波那契数,能够求1-n的斐波那契数列以及时间,通过输入一个数值n,即可从1-n输出数列和所需时间。(Fibonacci, can 1-N the Fibonacci sequence and time, through a numerical input n can be output from the 1-n sequence and the time required.)
  3. 所属分类:其他小程序

  1. 斐波那契数列

    0下载:
  2. 能够实现斐波那契数列,阿特姆郎数和汉诺塔游戏步骤的产生,用PYTHON语言编写,简介实用(Which can realize the Fibonacci sequence)
  3. 所属分类:其他小程序

    • 发布日期:2024-04-17
    • 文件大小:1024
    • 提供者:ty1148456099
  1. Desktop

    0下载:
  2. 斐波那契数是0、1、1、2、3、5、8、13、21,用递归方法可以定义为F0=0,F1=1,Fn=F(n-1)+F(n-2)(n>=2,n∈N*),此程序作用为算出第n个斐波那契数的数值并输出(Calculate the n value and output Fibonacci number)
  3. 所属分类:其他小程序

    • 发布日期:2024-04-17
    • 文件大小:1024
    • 提供者:505爱夏
  1. 斐波那契数列

    0下载:
  2. 斐波那契数列(Fibonacci sequence),又称黄金分割数列、因数学家列昂纳多·斐波那契(Leonardoda Fibonacci)以兔子繁殖为例子而引入,故又称为“兔子数列”,指的是这样一个数列:1、1、2、3、5、8、13、21、34、……在数学上,斐波纳契数列以如下被以递归的方法定义:F(0)=1,F(1)=1, F(n)=F(n-1)+F(n-2)(n>2,n∈N*)在现代物理、准晶体结构、化学等领域,斐波纳契数
  3. 所属分类:数学计算/工程计算

  1. 斐波那契数列用循环队列解决

    0下载:
  2. 本代码提供将斐波那契数列用循环队列来解决的方案。(This code provides a solution to the Fibonacci sequence using a circular queue.)
  3. 所属分类:其他小程序

    • 发布日期:2024-04-17
    • 文件大小:3072
    • 提供者:jackahri
  1. for循环写的斐波那契数列求和

    0下载:
  2. 使用Labview方式编写斐波那契数列,并求和。(Labview is used to compile Fibonacci sequence and summation.)
  3. 所属分类:LabView

  1. 斐波那契数列

    0下载:
  2. 斐波那契数列源代码,是当前最完整的,供大家分享,绝对简单(Fibonacci sequence source code, is the most complete, for everyone to share, absolutely simple)
  3. 所属分类:Windows编程

    • 发布日期:2024-04-17
    • 文件大小:43008
    • 提供者:Youlande
« 12 3 4 5 6 7 8 9 10 »

源码中国 www.ymcn.org