CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - calculate Fibonacci

搜索资源列表

  1. A_maths_me1067647162002

    0下载:
  2. This is a program that will let you calculate roots with the Quadratic formula (including complex roots), Factorial of a number, Fibonacci series (and Pascals Triangle still under construction).
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:3092
    • 提供者:liudm_123456
  1. 1316-How-Many-Fibs

    0下载:
  2. HDU ACM 1316 Problem Descr iption Recall the definition of the Fibonacci numbers: f1 := 1 f2 := 2 fn := fn-1 + fn-2 (n >= 3) Given two numbers a and b, calculate how many Fibonacci numbers are in the range [a, b].
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2016-01-25
    • 文件大小:1024
    • 提供者:zzyazz
  1. 1029-Rabbit

    0下载:
  2. 中大oj(Sicily)1029的题目。这道题目主要是看清递归关系式而编即可。注意处理精度。本程序利用四位进位处理精度。-Problem The rabbits have powerful reproduction ability. One pair of adult rabbits can give birth to one pair of kid rabbits every month. And after m months, the kid rabbits can become adu
  3. 所属分类:Other systems

    • 发布日期:2017-03-26
    • 文件大小:1088
    • 提供者:冰淇淋
  1. fibonacci

    0下载:
  2. 计算Fibonacci数列,用户输入第N项,得到该项的数值-Calculate the Fibonacci series, users enter the N to obtain the numerical
  3. 所属分类:Algorithm

    • 发布日期:2017-11-24
    • 文件大小:314597
    • 提供者:legend
  1. fibnum

    0下载:
  2. 这个程序是一个Win32程序,计算Fibonacci斐波纳契数列(一种整数数列, 其中每数等于前面两数之和)。其定义是f(1) = 1,f(2) = 2,并且当n>2时, f(n) = f(n-1) + f(n-2)。源代码种给出了三种计算方法。第一种方法用递归,第二种方法用大数组,第三种方法用小数组。此外,这个程序还具备多线程特性,所以在运算时可以做其它操作。代码用到了以前创建的Win32类。测试为发现bug和内存溢出。--Calculate Fibonacci value.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-11-23
    • 文件大小:69823
    • 提供者:杨广铭
  1. jichu1

    0下载:
  2. Fibonacci数列是通过知道前两项算出后一项,依次计算下去而得到的一组数列;此道题使用简单变量“数据平移”方法来求出Fibonacci数列的第n项(的具体项值)并显示在屏幕上(正整数n通过键盘输入)。-Fibonacci series through to know the latter to calculate the first two, the calculation will be followed by a group of series This questions the u
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-25
    • 文件大小:37626
    • 提供者:chenchen
  1. BigInt_DoubleList-Fibonacci

    0下载:
  2. 本程序用来计算Fibonacci数列中任意一个位置的Fibonacci数-This procedure used to calculate the Fibonacci series in an arbitrary location Fibonacci number
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:152613
    • 提供者:武鹏
  1. how_many_fibs

    0下载:
  2. Recall the definition of the Fibonacci numbers: f1 := 1 f2 := 2 fn := fn-1 + fn-2 (n>=3) Given two numbers a and b, calculate how many Fibonacci numbers are in the range [a,b]. -Recall the definition of the Fibonacci numbers:
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-22
    • 文件大小:14217
    • 提供者:k
  1. Fibonacci

    0下载:
  2. 程序能够接收1~100之间的整数,根据接收的数值,计算其Fibonacci数,在屏幕上输出其值。Fibonacci数列的定义如下: Fib(1)=1 Fib(2)=1 Fib(n)=fib(n-2)+fib(n-1) -Program can receive an integer between 1 to 100, according to the received value, to calculate the Fibonacci number, the screen outp
  3. 所属分类:Windows Develop

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

    0下载:
  2. 用3种不同的计算方法求Fibonacci数列的第n项,c++语言编写-With 3 different calculation method, to calculate Fibonacci series, the first n items, c++ language
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-26
    • 文件大小:867060
    • 提供者:梦竹2008
  1. lab_3

    0下载:
  2. 1.分别编写四个同名函数max1,实现函数重载,在main()函数中测试函数的功能 2.使用函数模板实现求任意类型数的最大值,针对不同的参数个数,编写两个同名函数模板max1,其参数个数不同,实现函数重载,在main()函数中测试函数功能 3.编写递归函数int fib(int n),在主程序中输入n的值,调用fib函数计算Fibonacci级数。公式为fib(n-1)+fib(n-2),n>2 fib(1)=fib(2)=1。使用if语句判断函数的出口,在程序中用cout语句中输
  3. 所属分类:matlab

    • 发布日期:2016-01-26
    • 文件大小:47382
    • 提供者:YIDIANER
  1. 1

    0下载:
  2. 一个FORK()调用的实验。通过建立共享内存区来实现进程之间的通信。父进程获取Fibonacci数列长度后,创建子进程来计算,待子进程完成后,父进程输出结果-A FORK () call experiment. Through the establishment of shared memory areas to achieve communication between the process. Parent process for the length of Fibonacci sequen
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-09
    • 文件大小:725
    • 提供者:caomin
  1. qishixunyou

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

    • 发布日期:2017-04-03
    • 文件大小:2450
    • 提供者:赵汉卿
  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
    • 文件大小:754
    • 提供者:cfall
  1. java

    0下载:
  2. 计算银行利率;查询输入日期的后三天;输出Fibonacci数列;计算球体、圆柱体体积;计算输入字符数-Calculating interest rates three days after the date of the query input output the Fibonacci sequence computing sphere, cylinder volume calculate the number of input characters
  3. 所属分类:Applet

    • 发布日期:2017-04-13
    • 文件大小:2308
    • 提供者:袁媛
  1. shiyan5

    0下载:
  2. 程序接收由用户键入的数N,根据给定的N值,计算Fibonacci数。 Fibonacci数的定义如下: FIB(1)=1 FIB(2)=1 FIB(N)=FIB(N-2)+FIB(N-1) N>=3-Typed by the user program receives the number N, according to the given value of N, calculate the Fibonacci numbers. Fibonacci numbers
  3. 所属分类:assembly language

    • 发布日期:2017-04-02
    • 文件大小:561
    • 提供者:linting
  1. Fibonacci-Sequence

    0下载:
  2. 利用递归算法计算斐波那契数列的n项的值,-Recursive algorithm to calculate the Fibonacci series, the value of n items
  3. 所属分类:Algorithm

    • 发布日期:2017-05-15
    • 文件大小:3643279
    • 提供者:laoduantou
  1. Fibonacci

    0下载:
  2. 输入一个数据n,计算斐波那契数列(Fibonacci)的第n个值, 规律:一个数等于前两个数之和-Enter a data n, calculate the Fibonacci sequence (Fibonacci) the first n values, rule: a number equal to the sum of the previous two numbers
  3. 所属分类:JavaScript

    • 发布日期:2017-04-06
    • 文件大小:3723
    • 提供者:常文静
  1. MATLAB-Fibonacci

    0下载:
  2. 写一个MATLAB函数fibo.m来计算Fibonacci数列,其定义如下: fibo(n+2)=fibo(n+1)+fibo(n) 此数列的初始条件如下:fibo(1)=0,fibo(2)=1。-Fibo.m write a MATLAB function to calculate the Fibonacci sequence, which is defined as follows: fibo (n+2) = fibo (n+1)+fibo (n) the initial conditio
  3. 所属分类:matlab

    • 发布日期:2017-04-17
    • 文件大小:12250
    • 提供者:张朋
  1. 斐波那契数列

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

    • 发布日期:2018-04-29
    • 文件大小:114688
    • 提供者:26shan
« 12 »
搜珍网 www.dssz.com