Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - fibonacci
Search - fibonacci - List
Fibonacci Numbers(斐波纳契数列)的较大位数的解决问题。-Fibonacci Numbers (Fibonacci series Naqi) the larger the median solve the problem.
Date : 2025-07-04 Size : 1kb User : 拉拉

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 series before and the value of the two. Programming that is the Fibonacci series for the first n values, and displayed on the screen.
Date : 2025-07-04 Size : 1kb User : fisherman

数据结构的生成Fibonacci数列和下三角的例子-data structure formation and the Fibonacci series of examples under 1.30
Date : 2025-07-04 Size : 32kb User : qzhirong

fibonacci数列,用递归实现,很简单的一个程序,但针对性很强。-fibonacci series, and recursive, a very simple procedure, but very targeted.
Date : 2025-07-04 Size : 211kb User : 黎元凯

用fibonacci变换方法对图象做置乱或逆置乱,效率极高,在信息隐藏中属常用的方法之一。调用函数为f=fibonacci_t(I,r,s),其中参数分别为I=被置乱的图像,r=置乱密钥,s=0置乱,s=1逆置乱-Fibonacci transformation method used to do on the image or inverse Scrambling Scrambling, high efficiency in the information hidden in one of the methods are commonly used. Call the function f = fibonacci_t (I, r, s), which parameters were I = have been scrambling the image, r = scrambling key, s = 0 Scrambling, s = 1 inverse Scrambling
Date : 2025-07-04 Size : 1kb User : gao

This code implements the shortest path algorithm via the simple scheme and fibonacci heap data structure. It has 3 kinds of testing data input method : random input by computer, reading from the file, reading from the key board.
Date : 2025-07-04 Size : 19kb User : heavenflames

DL : 0
用0.618法和fibonacci法求解单变量的最优化问题,fibonacci法有两个,可以对比,一个慢一个快-With 0.618 Fibonacci method and single-variable optimization problems, fibonacci law there are two, you can contrast a slow one fast
Date : 2025-07-04 Size : 2kb User : 杨大棱

IBM_PC汇编语言程序设计实验教程中第2章全部5个实验,smascii,search,count_char,phone,fibonacci.-IBM_PC experimental assembly language programming tutorial in Chapter 2 of all five experiments, smascii, search, count_char, phone, fibonacci.
Date : 2025-07-04 Size : 4kb User : 胡青


Date : 2025-07-04 Size : 1kb User : 郝红星

1) Write a function reverse(A) which takes a matrix A of arbitrary dimensions as input and returns a matrix B consisting of the columns of A in reverse order. Thus for example, if A = 1 2 3 then B = 3 2 1 4 5 6 6 5 4 7 8 9 9 8 7 Write a main program to call reverse(A) for the matrix A = magic(5). Print to the screen both A and reverse(A). 2) Write a program which accepts an input k from the keyboard, and which prints out the smallest fibonacci number that is at least as large as k. The program should also print out its position in the fibonacci sequence. Here is a sample of input and output: Enter k>0: 100 144 is the smallest fibonacci number greater than or equal to 100. It is the 12th fibonacci number.
Date : 2025-07-04 Size : 1kb User : wangshujuan

包含图像置乱的多种算法,arnold, hilbert, fibonacci这几种,还有图像去噪的源程序。-Contains a variety of image scrambling algorithm, arnold, hilbert, fibonacci these types, as well as the source image denoising.
Date : 2025-07-04 Size : 29kb User : asaonan

图像置乱代码,包括: Arnold变换、Fibonacci变换、面包师变换、Hilbert曲线、Zigzag曲线、混沌映射变换、生命游戏、伪随机数、有限整数域上的拟仿射变换(QATLIG)等。 -Image Scrambling code, including: Arnold transform, Fibonacci transformation, baker transformation, Hilbert curve, Zigzag curve, chaotic mapping transformation, life game, pseudo-random number, finite integer domain to be affine transformation (QATLIG) and so on.
Date : 2025-07-04 Size : 260kb User : asaonan

一个实现计算斐波那契数的汇编程序 含asm文件,课程作业只用-The realization of the calculation of a Fibonacci containing the assembler asm file, coursework only
Date : 2025-07-04 Size : 2kb User : Xu

用MATLAB 里的XILINX BLOCKS编写, 实现Fibonacci sequence算法, 当F为0时, 输出为0 F为1时, 输出为1 当F为N 时, 输出为F的N-1 加上 F的N-2.-Using MATLAB in the XILINX BLOCKS prepared realize Fibonacci sequence algorithm, when F is 0, the output for 0 F for one, the output is 1 when F is N, the output for the F of the N-1 plus F of N-2 .
Date : 2025-07-04 Size : 25kb User : zhang tian

fibonacii函数的实现 算到第20项-Operators realize fibonacii function to the first 20
Date : 2025-07-04 Size : 1kb User : hello

就是求出fibonacci数列的任意项,此数列为f[0]=1 f[1]=1 f[k]=[k-1]+f[k-2]-Fibonacci series is derived arbitrary items as the number of f [0] = 1 f [1] = 1 f [k] = [k-1]+ F [k-2]
Date : 2025-07-04 Size : 1kb User : huangzhigang

DL : 0
一个效率还可以的配对堆 Fibonacci Heap太难写了 配对堆可以有效替代Fibonacci Heap 附带了用它实现的Dijkstra 复杂度O(nlogn+e) -An efficient matching can also be hard to heap Fibonacci Heap wrote a pairing heap Fibonacci Heap can be an effective alternative to use it comes with the realization of Dijkstra complexity O (nlogn+ E)
Date : 2025-07-04 Size : 3kb User : 武永基

已知斐波那契数列的定义: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 subroutine has to enter a number, and then the results of the calculation stored in the memory
Date : 2025-07-04 Size : 1kb User : yd

用0.618法和Fibonacci法求解函数最小值-With 0.618 and the minimum function Fibonacci method
Date : 2025-07-04 Size : 1kb User : 胡南

斐波那契数列,包含头文件、算法实现文件及主函数文件。 -Fibonacci sequence, including the header files, the algorithm to achieve the main function of documents and files.
Date : 2025-07-04 Size : 9kb User : 陈济恺
« 1 2 3 45 6 7 8 9 10 ... 40 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.