CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 斐波那契数列

搜索资源列表

  1. fibonacci

    0下载:
  2. 斐波那契数列,可在区间内输出区间内的斐波那契数列。-It is a fibonacci series.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-15
    • 文件大小:4954
    • 提供者:Paul
  1. lab02

    0下载:
  2. f(n)=f(n-1)+f(n-2) f(0)=f(1)=1,求斐波那契数列第20项,分别用循环和递归的方式,比较时间效率。提示:可以使用c函数clock取出当前系统时间,计算前后各一次,两次相减除以每秒的时钟数,就可以得到以秒为单位的差距-f (n) = f (n-1)+ f (n-2) f (0) = f (1) = 1, Item 20 seeking Fibonacci number Fibonacci sequence that were circulating and recursi
  3. 所属分类:Console

    • 发布日期:2017-05-11
    • 文件大小:2542987
    • 提供者:龙晓聪
  1. 12101

    0下载:
  2. 斐波那契数列通项公式,最简单的一种写法,谨献给VB初学者。-Fibonacci Sequence formula, the easiest way to write, I would like to dedicate VB beginners.
  3. 所属分类:Game Program

    • 发布日期:2017-04-12
    • 文件大小:1268
    • 提供者:pang368241
  1. 13100

    0下载:
  2. 斐波那契数列的前N项和,最简单的一种写法,谨献给VB初学者。-The first N Fibonacci series, the easiest way to write, I would like to dedicate VB beginners.
  3. 所属分类:Communication

    • 发布日期:2017-04-12
    • 文件大小:1268
    • 提供者:pa00628
  1. Fibonacci

    0下载:
  2. 通过模板类,获取斐波那契数列任意位的数,还可以修改成任意数列的类-By the template class, gets the Fibonacci sequence any number of bits can also be modified into an arbitrary sequence of classes
  3. 所属分类:Applications

    • 发布日期:2017-04-13
    • 文件大小:1949
    • 提供者:zhuo751739
  1. Fibonacci

    0下载:
  2. 该程序实现了经典的斐波那契数列的功能,欢迎学习-fabonacci numbers
  3. 所属分类:Algorithm

    • 发布日期:2017-05-01
    • 文件大小:151655
    • 提供者:
  1. fib32.asm

    0下载:
  2. 用汇编语言实现斐波那契数列,具体要求:系统请求输入一个正整数,用户输入需要显示的项的个数,回车键结束输入;显示指定数目的斐波那契数列项,要求各个项用空格隔开,并用不同颜色显示(不限制颜色的种类、数目)。-Assembly language Fibonacci number, specific requirements: system requests to enter a positive integer, the number of items a user input to be displ
  3. 所属分类:assembly language

    • 发布日期:2017-04-13
    • 文件大小:2061
    • 提供者:mj
  1. Classical-C--program

    0下载:
  2. 斐波那契数列、选择法排序、磁盘文件操作等C语言经典算法。-Fibonacci number, Sorting, disk file operations and other C language classical algorithm.
  3. 所属分类:Algorithm

    • 发布日期:2017-05-04
    • 文件大小:12327
    • 提供者:ShenHua
  1. Getting-Algorithm-18

    0下载:
  2. 任意次方后的最后 计算某日是该年的第几天 婚礼上的谎言 18 实例016 百元买百鸡 19 实例017 打渔晒网问题 20 实例018 判断三角形的类型 22 实例019 直接插入排序 23 实例020 希尔排序 25 实例021 冒泡排序 26 实例022 快速排序 27 实例023 选择排序 28 实例024 归并排序 29 实例025 二分查找 31 实例026 分块查找 32 实例027 哈希查找 34 实例028 斐波那契数列 37
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-04
    • 文件大小:10702
    • 提供者:王尼玛
  1. lab1

    1下载:
  2. 用NASM汇编语言实现不同颜色的斐波那契数列输出-Fibonacci sequence
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-04
    • 文件大小:390589
    • 提供者:FrankHuang
  1. Fibonacci-sequence

    0下载:
  2. 斐波那契数列指的是这样一个数列:1、1、2、3、5、8、13、21、34…… 这个数列从第三项开始,每一项都等于前两项之和。 给出一个正整数n,要求菲波那契数列中第n个数是多少。 - Fibonacci sequence refers to such a series: 1,1,2,3,5,8,13,21,34 ...... This sequence begins with the third term, each equal to the sum of the
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-05
    • 文件大小:37875
    • 提供者:zhangziman
  1. AVLTree

    0下载:
  2. 数据结构,平衡二叉树 平衡二叉树(Balanced Binary Tree)又被称为AVL树(有别于AVL算法),且具有以下性质:它是一 棵空树或它的左右两个子树的高度差的绝对值不超过1,并且左右两个子树都是一棵平衡二叉树。构造与调整方法 平衡二叉树的常用算法有红黑树、AVL、Treap等。 最小二叉平衡树的节点的公式如下 F(n) F(n-1)+F(n-2)+1 这个类似于一个递归的数列,可以参考Fibonacci(斐波那契)数列,1是根节点,F(n-1)是左子树的节点数量,F(n-2)是
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2560
    • 提供者:olivia
  1. RAM

    0下载:
  2. 用verilog实现了IP核的使用,例化了一个RAM,用来进行读写操作,另外还编写了斐波那契数列来进行测试。-Using verilog to achieve the use of IP core, the instantiation of a RAM, used to read and write operations, in addition to the preparation of the Fibonacci sequence for testing.
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-14
    • 文件大小:2607
    • 提供者:east
  1. shu

    0下载:
  2. 易语言斐波那契数列演示源码例程程序根据斐波那契数列原理,演示了斐波那契数列值的计算过程。 -Easy language source code routines demo program according to Fibonacci Fibonacci principle, the calculation process of the Fibonacci sequence value demonstration.
  3. 所属分类:ELanguage

    • 发布日期:2017-04-13
    • 文件大小:1980
    • 提供者:zcwl
  1. Fibonacci

    0下载:
  2. 斐波那契数列的非递归计算方法。既没有用递归形式,也没有用栈。-Non- recursive Computing Method for Fibonacci Sequence.
  3. 所属分类:Algorithm

    • 发布日期:2017-05-05
    • 文件大小:160741
    • 提供者:张瀚
  1. FABINACCIA

    0下载:
  2. 斐波那契数列求解十分有用,对学生了解斐波那契数列编程过程十分有用-The Fibonacci sequence to solve is very useful,For students to understand the Fibonacci sequence programming process can be useful
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-13
    • 文件大小:2666254
    • 提供者:白客
  1. cPPsum

    0下载:
  2. 利用CPP来进行斐波那契数列的计算,可以更好的理解菲波那切数列-Using CPP for the calculation of the Fibonacci sequence, can a better understanding of fe wave that cut sequence
  3. 所属分类:Other systems

    • 发布日期:2017-12-17
    • 文件大小:2048
    • 提供者:刘风
  1. fibonacci

    0下载:
  2. 斐波那契数列产生,输入阶数,程序输出斐波那契数列。-Fibonacci sequence generation, input order, program output Fibonacci sequence.
  3. 所属分类:Other systems

    • 发布日期:2017-12-13
    • 文件大小:10733
    • 提供者:kang
  1. funct

    0下载:
  2. 斐波那契数列的matlab实现,比较有用,注册会员需要-Fibonacci number of matlab implementation, more useful, registered members need
  3. 所属分类:matlab

    • 发布日期:2017-12-14
    • 文件大小:10240
    • 提供者:guoluo
  1. FibonacciExplore

    0下载:
  2. 对斐波那契数列的算法实现,采用多种方法,使用了多进程,便于学习斐波那契算法。(The Fibonacci sequence algorithm implementation, using a variety of methods, the use of multi-process, easy to learn Fibonacci algorithm.)
  3. 所属分类:C#编程

    • 发布日期:2017-12-17
    • 文件大小:438272
    • 提供者:jack12
« 1 2 3 4 5 6 78 »
搜珍网 www.dssz.com