搜索资源列表
-
0下载:
一维搜索法求极值的问题,用c++描述,黄金分割法和斐波那契数列发求-One-dimensional search for the extremum problem, using c++ descr iption, golden section method and the Fibonacci sequence for hair
-
-
0下载:
已知斐波那契数列的定义: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 series before the n of the subrout
-
-
0下载:
汇编的斐波那契数列,本人上机作业-Compiled by the Fibonacci sequence, I am on the machine operation
-
-
0下载:
斐波那契数列,包含头文件、算法实现文件及主函数文件。 -Fibonacci sequence, including the header files, the algorithm to achieve the main function of documents and files.
-
-
0下载:
利用虚函数手段,按照3种不同的计算方法来求出Fibonacci数列的第n项(的具体项值)并输出。具体地说,可通过在基类baseCla及其派生类fib1Cla、fib2Cla和fib3Cla中说明如下的同一个虚函数“virtual double fib(int n) ”,来实现求Fibonacci数列第n项值并返回的3种不同求解方法。例如,可设计并使用已经在第4和第5章的练习中所实现的求解方法:简单变量“数据平移”法、使用数组的实现法以及使用递归函数的实现法。-The use of virtual
-
-
0下载:
用delphi写的输出斐波那契数列前15项-Delphi write the output with the Fibonacci sequence before the 15
-
-
0下载:
可以输入任意一个数字n,能在电脑上显示出第n个斐波那契序列。-You can enter any number n, the n-th Fibonacci sequence is displayed on the computer.
-
-
0下载:
汇编 菲波那契数列
include irvine32.inc
原理:f3=f2+f1
.data
str1 byte "请输入所求的菲波那契数列的位数:",0
str2 byte "此程序中菲波那契数列最大位置:",0
j dword 2 求最大位置
f1 dword 1,0,0 用3个32位表示一个96位
f2 dword 1,0,0 用3个32位表示一个96位
m dword ?
.code
main proc
mov
-
-
0下载:
Fibonacci Sequence that do the sequence right about Da Vinci Code, it s a great algorithm for ordering tasks
-
-
0下载:
汇编语言实现Fibonacci数列,学生信息管理系统,窗口颜色控制-Assembly language to achieve the Fibonacci sequence, student information management system, window color control
-
-
0下载:
用数组来求Fibonacci数列的前十项。注意Fibonacci数列的特点。-Use an array to find the first ten Fibonacci numbers. Note Fibonacci sequence features.
-
-
0下载:
著名的Fibonacci数列,定义如下
f(1)=1,f(2)=1,f(n)=f(n-1)+f(n-2),n>2
用文字来说,就是斐波那契数列由 0 和 1 开始,之后的斐波那契系数就由之前的两数相加。首几个斐波那契系数是:
0, 1, 1, 2, 3, 5, 8, 13, 21-The famous Fibonacci sequence, defined as f (1) = 1, f (2) = 1, f (n) = f (n-1)+f (n-2), n> 2 wor
-
-
0下载:
裴波拉那齐数列前一百项求和,利用while循环等-Pei Qi sequence that summed Bora Fibonacci
-
-
0下载:
产生指定数目的斐波那契数列。输入想产生的数字个数,则会输出相应的斐波那契数列,同时绘制数列曲线图。-Fibonacci generating a specified number of sequence. Enter the number of digits to produce, it will output the corresponding Fibonacci series, at the same time sequence graph drawing.
-
-
0下载:
4阶斐波那契序列如下:f0=f1=f2=0, f3=1,…,fi=fi-1+fi-2+fi-3+fi-4,
利用容量为k=4的循环队列,构造序列的前n+1项(f0, f1 , f2 ,… fn ),要求满足fn ≤200而fn+1 >200。-Fibonacci Fibonacci sequence of order 4 are: f0 = f1 = f2 = 0, f3 = 1, ..., fi = fi-1+fi-2+fi-3+fi-4, k = 4 for the capacit
-
-
0下载:
Delphi裴波纳契数列求和实例,请输入要计算数字的前多少位。斐波那契数列,又称黄金分割数列,指的是这样一个数列:0、1、1、2、3、5、8、13、21、……在数学上,斐波纳契数列以如下被以递归的方法定义:F0=0,F1=1,Fn=F(n-1)+F(n-2)(n>=2,n∈N*)在现代物理、准晶体结构、化学等领域,斐波纳契数列都有直接的应用。本例用Delphi来演示斐波那契数列的简单应用。-Delphi Fibonacci numbers and examples, please inpu
-
-
0下载:
在软件keil中用汇编语言生成fibonacci序列的前20个数据。-Fibonacci sequence generated assembly language before the 20 data used in keil software.
-
-
0下载:
易语言斐波那契数列演示源码例程程序根据斐波那契数列原理,演示了斐波那契数列值的计算过程。
-Easy language source code routines demo program according to Fibonacci Fibonacci principle, the calculation process of the Fibonacci sequence value demonstration.
-
-
0下载:
运行一个斐波那契序列,,得到基础的函数,是一个c语言初学的不错算法(Run a Fibonacci sequence, function based, is a good algorithm for C language beginners.)
-
-
2下载:
使用Labview方式编写斐波那契数列,并求和。(Labview is used to compile Fibonacci sequence and summation.)
-