CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - the Fibonacci series

搜索资源列表

  1. fib序列

    0下载:
  2. 数据结构算法:使用循环队列,K阶斐波那契数列的一种算法实现。-algorithm data structure : the use of recycled cohort, K bands Fibonacci series, a method.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:8.82kb
    • 提供者:ch.nan
  1. fibonaqi

    0下载:
  2. Fibonacci数列是一种特殊的数列,数列的第一项、第二项的值为1,从数列的第三项开始,每一项的值都等于数列前两项值的和。本题就是编程求解Fibonacci数列第n项的值,并在屏幕上显示出来。-Fibonacci series is a special series, the first series of items, the second of the value of a, series from the third, each have a value equal to the ser
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:888byte
    • 提供者:fisherman
  1. c_Fibonacci

    0下载:
  2. 数据结构的生成Fibonacci数列和下三角的例子-data structure formation and the Fibonacci series of examples under 1.30
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:32.34kb
    • 提供者:qzhirong
  1. fibonacci

    0下载:
  2. 此程序实现了利用矩阵连乘方法求fibonacci数列,文档里面包含我的求解思路-This program implements the use of matrix multiplication method for solving even the fibonacci series
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1.11kb
    • 提供者:wwb
  1. feibonaqieshulie

    0下载:
  2. 用递归算法设计实现的斐波那锲数列,有些地方可能不太完善-Design and Implementation of recursive algorithm using the Fibonacci series Qie, some places may not be perfect
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:6.8kb
    • 提供者:liu
  1. sy1

    0下载:
  2. 使用如下所谓的简单变量“数据平移”方法来求出Fibonacci数列的第n项(的具体项值)并显示在屏幕上(正整数n通过键盘输入):说明变量old1=1,old2=1,newItem;新的Fibonacci项newItem总是“距它最近”的前两项(old1与old2)的累加和。而后通过“old1=old2 old2=newItem ”进行所谓的“数据平移”。接着计算另一个新的Fibonacci项newItem,依次循环,直到求出数列的第n项时为止。-Use the following so-call
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:5.21kb
    • 提供者:mwy
  1. Fibonacci

    0下载:
  2. 如何解决Fibonacci数列问题的源代码-How to solve the problem of Fibonacci series of source code
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:931byte
    • 提供者:kent
  1. ycomb

    0下载:
  2. Y-combinator 解决fibonacci数列的一个实现,实现了不定义函数名称而实现递归的过程-Y-combinator solve a fibonacci series to achieve, the realization of the non-defined function name to achieve the process of recursive
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:1.2kb
    • 提供者:zhaoyuhang
  1. thinkpad

    0下载:
  2. 本人原创的一个人和电脑互取苹果的游戏程序,核心是Fibonacci数列,供学习c/c++和数据结构的新手学习,以增强学习兴趣和热情。-I have an original and Apple computers and take the game procedures, the core is the Fibonacci series for learning c/c++ and data structure of new learning, to enhance the interest an
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:3.31kb
    • 提供者:prolove
  1. assign4

    0下载:
  2. 第1部分 该纳契系列:0,1 ,2,3,5,8,13,21,...。开始的条款0和1,并有 每一个成功的财产一词,是前两个条件的总和。编写一个非递归 功能纳契(n)到显示的前n个Fibonacci数。观看停止对样品标志 在最后显示的数字输出(它不是逗号)。编写一个简短的UNIX shell脚本来运行 您的斐波那契程序。 第2部分 编写一个C程序,使用UNIX进程管理工具。您将使用fork()函数 产卵的三子进程。每个子进程将使用execlp()函数来运行
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:53.1kb
    • 提供者:刘洋
  1. fibonacci

    0下载:
  2. 优化的fibonacci数列计算程序,可以较短时间计算出较大的数字-Fibonacci series, optimization program that can calculate the short time a large number of
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:754byte
    • 提供者:cfall
  1. 7

    0下载:
  2. 用递归算法进行计算斐波那契数列,这是一种c++程序-Calculation of the Fibonacci series
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:1.81kb
    • 提供者:丁剑
  1. dxs

    0下载:
  2. 输入一个数据n,计算斐波那契数列(Fibonacci)的第n个值 1 1 2 3 5 8 13 21 34 规律:一个数等于前两个数之和 //计算斐波那契数列(Fibonacci)的第n个值 -Enter a data n, calculate the Fibonacci series (Fibonacci) of the n-th value of 112,358,132,134 law: a number equal to the previous two numbers
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:9.7kb
    • 提供者:胡志明
  1. Lying-data-structure9

    0下载:
  2.  《大话数据结构》主要内容包含:数据结构介绍、算法推导大O阶的方法;顺序结构与链式结构差异、栈与队列的应用;串的朴素模式匹配、KMP模式匹配算法;二叉树前中后序遍历、赫夫曼树及应用;图的深度、广度遍历;最小生成树两种算法、最短路径两种算法;拓扑排序与关键路径算法;折半查找、插值查找、斐波那契查找等静态查找;稠密索引、分块索引、倒排索引等索引技术;冒泡、选择、插入等简单排序;希尔、堆、归并、快速等改进排序-" Westward the data structure," the m
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:1.46mb
    • 提供者:陈雨
  1. 01

    0下载:
  2. 利用递归方式的算法计算斐波那契数列各个项数-Recursively the algorithm to calculate the Fibonacci series of various number of items
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:943byte
    • 提供者:princess36也
  1. daima

    0下载:
  2. 压缩包里的事5段程序的代码,分别是斐波那契数列 最大子段和 最长公共子序列 矩阵连乘积 整数因子分解问题-Compression bag thing the program code, respectively, even the product of Fibonacci Fibonacci series the largest subsegment, and the longest common subsequence matrix Integer factorization issu
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1.84kb
    • 提供者:zhongming
  1. sort

    0下载:
  2. 两个排序:冒泡排序和选择排序(具体是用c语言来实现的) 一个斐波那契数列的输出-Two sorts: bubble sort and selection sort (specifically, to achieve the c language) A Fibonacci Fibonacci series output
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:585byte
    • 提供者:furu xiang
搜珍网 www.dssz.com