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

搜索资源列表

  1. TowersofHanoi

    0下载:
  2. classic game of recursion, tower of hanoi
  3. 所属分类:Other Games

    • 发布日期:2017-11-06
    • 文件大小:16132
    • 提供者:KevinTran
  1. Greatest-common-divisor-(GCD)

    0下载:
  2. 用递归调用和辗转相除法求两个整数的最大公约数(输入多组数据,每个数在1到1000之间;输出为一行一个公约数)。-Calculate and output the greatest common divisor (GCD) of a pair of integers.The classic algorithm for computing the GCD, known as Euclid’s algorithm, goes as follows: Let m and n be variables c
  3. 所属分类:Other systems

    • 发布日期:2017-11-07
    • 文件大小:3150
    • 提供者:Lee·K
  1. Linear-Prediction

    0下载:
  2. Linear Prediction using Levinson Durbin Recursion and Lattice Filters
  3. 所属分类:matlab例程

    • 发布日期:2014-03-07
    • 文件大小:3620
    • 提供者:charon25
  1. MergeSortTest

    0下载:
  2. 用C++实现了非递归归并排序算法,20万条数据花费时间78ms, 对初学算法的有一定的帮助!-use C++ language to implemente the merge sort algorithm without recursion! This algorithm only cost 78ms to manage 200000 data items.
  3. 所属分类:Console

    • 发布日期:2017-11-14
    • 文件大小:9649
    • 提供者:abcdefg
  1. maze

    0下载:
  2. 建立一个迷宫,并用递归算法找出一条走出迷宫的路线。-Build a maze and find a way out with recursion method.
  3. 所属分类:Data structs

    • 发布日期:2017-12-02
    • 文件大小:14676
    • 提供者:王伟峰
  1. Job_exercise1

    0下载:
  2. 同质链表以及异质链表,主要包括创建、插入、删除、倒置、拼接等操作。-homolinkedlist and heterolinkedlist,including creation,insertion,deletion,recursion,combination
  3. 所属分类:其他小程序

    • 发布日期:2013-09-29
    • 文件大小:2044396
    • 提供者:黄方蕾
  1. Fibonacci-series

    0下载:
  2. 斐波那契数列 递归调用,主要用于了解递归用法-The Fibonacci series recursive calls, mainly used to understand recursion usage
  3. 所属分类:Algorithm

    • 发布日期:2017-12-04
    • 文件大小:748
    • 提供者:august
  1. CPP

    0下载:
  2. 列出了C++基本算法的一些源代码如递归,跳转-Listed C++ basic algorithm source code, such as recursion, jump
  3. 所属分类:source in ebook

    • 发布日期:2017-12-05
    • 文件大小:194294
    • 提供者:yang
  1. Nqueen

    0下载:
  2. 给出了用三种方法实现的N皇后,包括循环、递归、位运算等,方便初学者进行研究学习。-Three ways to achieve the N-Queens, including loops, recursion, bit operation, easy for beginners to study learning.
  3. 所属分类:Data structs

    • 发布日期:2017-11-19
    • 文件大小:241766
    • 提供者:子木
  1. hierarchicalCentroid

    0下载:
  2. Descr iptor for simple shapes (e.g letters). Computes the descr iptor twice in order to describe horizontally and vertically with the same accuracy. Input: image (2-D, binary or gray) depth of recursion (default 7), plotFlag(if on -
  3. 所属分类:Other systems

    • 发布日期:2017-11-23
    • 文件大小:6044
    • 提供者:almosawi
  1. kuai_suan_24

    0下载:
  2. 小时候玩过的加减乘除快算24游戏。这里的算法不是用的正统的递归或穷尽。 -The child played the addition and subtraction multiplication and division as fast as count 24 games. Here algorithm is not used in orthodox recursion or exhaustive.
  3. 所属分类:Algorithm

    • 发布日期:2017-11-07
    • 文件大小:56243
    • 提供者:aynes
  1. Large-integer-factorial

    0下载:
  2. 本实例实现了一个计算大整数阶乘的程序。通常使用递归来计算一个整数的阶乘。但是, 因为ii.算本身能够表示的最大整数是有限的,所以能够计算的阶乘整数要受到限制。本程序使 用数组来存储结果,因而很好地解决了这个问题,只要有足够大的数组就能计.任意大的整数0-Examples of the realization of a to calculate large integer factorial program. Usually use recursion to calculate the facto
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-14
    • 文件大小:754
    • 提供者:hxk
  1. suanfa

    0下载:
  2. 算法程序与设计试验中的经典算法的源代码:像是分治递归,贪心,回溯等。-Algorithm design test of the classical algorithm source code: such as divide and conquer recursion, greedy, backtracking.
  3. 所属分类:source in ebook

    • 发布日期:2017-12-02
    • 文件大小:645308
    • 提供者:qinqin
  1. code

    0下载:
  2. 使用回溯法解决的典型问题的算法:骑士巡游问题,n皇后问题,0-1背包问题。 使用递归与分治策略解决的几个问题的算法:Hanoi塔问题和二分搜索技术。-Uses backtracking method to solve the problems of the typical algorithms: the knight tour problem, n queen problem, 0-1 knapsack problem. Recursion and divide and conq
  3. 所属分类:Other systems

    • 发布日期:2017-11-30
    • 文件大小:3288
    • 提供者:阿丁汤圆
  1. QuickSort

    0下载:
  2. Quicksort is a divide and conquer algorithm. Quicksort first divides a large list into two smaller sub-lists: the low elements and the high elements. Quicksort can then recursively sort the sub-lists. The steps are: Pick an element, called a pivo
  3. 所属分类:MacOS develop

    • 发布日期:2017-11-24
    • 文件大小:5115
    • 提供者:domix
  1. Sierpinski

    0下载:
  2. Sierpinski镂垫: 是一个非常有趣的图案, 有着悠久的历史, 在分形几何中等领域里引起了人们极大地兴趣, 是用递归和随机方式定义的几何形状, 在极限情况下, 它所表现的性质并没有随机性。 -Sierpinski gasket: It is a very interesting pattern, has a long history in the field of fractal geometry moderate aroused great interest is the use
  3. 所属分类:OpenGL program

    • 发布日期:2017-11-17
    • 文件大小:54416
    • 提供者:dzwang
  1. code

    0下载:
  2. 使用回溯法解决的典型问题的算法:骑士巡游问题,n皇后问题,0-1背包问题。 使用递归与分治策略解决的几个问题的算法:Hanoi塔问题和二分搜索技术。-Use backtracking to solve the typical problems of algorithms: knight tour problem, n queens problem 0-1 knapsack problem. Use recursion and divide and conquer strategy to so
  3. 所属分类:Data structs

    • 发布日期:2017-11-21
    • 文件大小:3720
    • 提供者:
  1. hw2

    0下载:
  2. 最优算法的判别与给出特定文法判断其是否为自下而上的递归-Identification and optimal algorithm gives specific grammar determine whether it is a bottom-up recursion
  3. 所属分类:assembly language

    • 发布日期:2017-11-23
    • 文件大小:793132
    • 提供者:王欣
  1. recursion

    0下载:
  2. 数据结构中的递归与非递归的实现与区别以及动态规划的思想。-Recursive data structures and non-recursive and differences as well as the realization of the idea of ​ ​ dynamic programming.
  3. 所属分类:Other systems

    • 发布日期:2017-12-03
    • 文件大小:118100
    • 提供者:张张
  1. hannuota

    0下载:
  2. 汉诺塔递归算法 初学者学习递归很不错的源码-Tower of Hanoi recursive algorithm for beginners to learn recursion is a good source
  3. 所属分类:Console

    • 发布日期:2017-11-27
    • 文件大小:220726
    • 提供者:John
« 1 2 ... 10 11 12 13 14 1516 17 18 19 20 21 »
搜珍网 www.dssz.com