搜索资源列表

  1. ShowTree

    0下载:
  2. 递归显示树形视图所有节点 对树形视图实行动态添加删除 VC MFC CTreeView-Recursion tree view displays all nodes on the tree view of the kind of dynamic add remove VC MFC CTreeView
  3. 所属分类:TreeView控件

    • 发布日期:2024-05-20
    • 文件大小:3970048
    • 提供者:leo_tan
  1. fibonacci

    0下载:
  2. 用递归、递推、矩阵等多种方法实现求Fibonacci数的算法。程序使用java实现-Use recursion, recursion, matrix and other methods to achieve the Fibonacci-seeking algorithms. Program using the java implementation
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-20
    • 文件大小:6144
    • 提供者:胖猫
  1. ssd7exercise3

    0下载:
  2. 1实现stl容器; 2实现说给声明的函数 3使用递归方法 相对于实验2,新增了2个类Class Category。Class Categories; 关键算法: virtual void findOfferings (Listing::iterator start, Listing::iterator finish, Listing &matches) void findOfferingsRecursive (
  3. 所属分类:STL

    • 发布日期:2024-05-20
    • 文件大小:661504
    • 提供者:邹斌
  1. shenyou

    0下载:
  2. 求解数独的深度优先搜索的程序,没有递归,可用于低性能的单片机。-Sudoku Solving the depth-first search procedure, there is no recursion, can be used for low performance microcontroller.
  3. 所属分类:Windows编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:Kenneth.L
  1. jisuansuanfa

    0下载:
  2. 主要描述递归的概念, 掌握设计有效算法的分治策略。 通过下面的范例学习分治策略设计技巧。-Will describe the concept of recursion to master the design of effective algorithm for sub-rule strategy. Examples of learning through the following sub-rule strategy of d
  3. 所属分类:并行运算

    • 发布日期:2024-05-20
    • 文件大小:226304
    • 提供者:ky
  1. tigui_tree_structure

    0下载:
  2. The use of recursion, to achieve directory tree structure.
  3. 所属分类:TreeView控件

    • 发布日期:2024-05-20
    • 文件大小:2048
    • 提供者:king u ming
  1. dgfxs

    0下载:
  2. 递归实现分型树,由一个主干开始生成一棵完整的树-Typing recursion tree, from a trunk to start generating a full tree
  3. 所属分类:分形几何

    • 发布日期:2024-05-20
    • 文件大小:539648
    • 提供者:陈介平
  1. queen

    0下载:
  2. 八皇后问题的具体实现,用递归来寻找每个皇后的位置,有注释!-Concrete realization of the eight queens problem, using recursion to find the location of each of the Queen, there are comments!
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:CSlaf
  1. Commonalgorithms

    0下载:
  2. 一些常用的算法设计方法和C++环境下的实现方法。主要包括:迭代法、穷举搜、索法、递推法、递归、回溯法、贪婪法、分治法 -Some commonly used algorithm design methods and C environments are implemented. These mainly include: iterative method, exhaustive search, rope method, recurs
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-20
    • 文件大小:28672
    • 提供者:wgl
  1. lq

    0下载:
  2. 对于给出的一组数据,要找到它们的最大或者最小值,运用递归和分治的思想方法来解决问题。n=2时,一次比较就可以找出两个数据元素的最大元和最小元。 当n>2时,可以把n个数据元素分为大致相等的两半, 一半有?n/2?个数据元素,而另一半有?n/2?个数据元素。 先分别找出各自组中的最大元和最小元,然后 将两个最大元进行比较,就可得n个元素的最大元; 将两个最小元进行比较,就可得n个元素的最小元。-For a given set of
  3. 所属分类:Windows编程

    • 发布日期:2024-05-20
    • 文件大小:577536
    • 提供者:
  1. ClosetPairs

    0下载:
  2. 本算法使用分治法求解最近点对问题。事先用O(nlogn)时间对x坐标进行排序,使得所有的点是按x坐标从小到大排好序的(x坐标相同时y坐标小的排前),然后取下标小于n/2属于左边的点集PL,取下标大于n/2属于右边的点集PR,即用O(1)时间就可以将规模为n的问题分解为两个规模为n/2的、同类型的子问题。分割完毕之后就可以采用分治法,分别求出PL和PR中的最近点对,最终通过递归实现。-This algorithm uses divide
  3. 所属分类:其他小程序

    • 发布日期:2024-05-20
    • 文件大小:25600
    • 提供者:lhguo
  1. gcd

    0下载:
  2. to get GCD(A,B),and no recursion -to get GCD(A,B),and no recursion
  3. 所属分类:其他小程序

    • 发布日期:2024-05-20
    • 文件大小:4096
    • 提供者:WEIJINGJING
  1. maze

    0下载:
  2. 迷宫问题的递归解法,输入一个1,0矩阵构成的迷宫,0代表可走,1代表不可以走,通过递归找出从入口到出口的路径,并输出-Recursive solution of the maze problem, enter a maze of 1,0 matrices, 0 representatives may go a representative can not walk through the recursion to find the pa
  3. 所属分类:Windows编程

    • 发布日期:2024-05-20
    • 文件大小:1032192
    • 提供者:李牛人
  1. hano

    0下载:
  2. 这是一个不利用递归实现汗诺塔的例子,让我们看看原来简单的 hanoi (n-1,a,c) hanoi (n,a,b) hanoi (n-1,c,b) 由于无法使用递归,需要什么样的手段才能实现。-This is a non-recursive implementation Khan, Tower of Hanoi example, let' s take a look at the original s
  3. 所属分类:其他智力游戏

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:spencer
  1. test1

    0下载:
  2. 递归实现一个集合的所有的子集的输出。 例如{1,2} 输出{}{1}{2}{1,2}-A subset of the output of recursion
  3. 所属分类:matlab例程

    • 发布日期:2024-05-20
    • 文件大小:1772544
    • 提供者:张天扬
  1. QuickSort1

    0下载:
  2. 一种速度很快的排序算法,无论是从空间和时间上。运用递归,循环,指针-A very fast sorting algorithm, both in space and time. The use of recursion, loop, pointer
  3. 所属分类:Windows编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:罗云
  1. Hanio

    0下载:
  2. 汉诺塔游戏的设计 汉诺塔问题是最经典的递归问题-Tower of Hanoi Tower of Hanoi game design is the most classic recursion problem
  3. 所属分类:其他游戏

    • 发布日期:2024-05-20
    • 文件大小:12288
    • 提供者:fans
  1. MergeSort

    0下载:
  2. mergesort分治排序 - 先产生1000个随机数,连续分为3组,直到每组只剩k个元素,分别排列每组数,再用分治法合并数组-mergesort- randomly generate 1000 numbers, then split it into thirds, subarray is of size- k, stop the recursion and use insertion-sort to sort the subarray
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:
  1. RandomizedQuicksort

    0下载:
  2. The steps are: 1. Pick an element, called a pivot, from the list. 2. Reorder the list so that all elements which are less than the pivot come before the pivot and so that all elements greater than the pivot come af
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-20
    • 文件大小:113664
    • 提供者:Clay84
  1. hanoi

    0下载:
  2. Hanoi塔的递归调用和消除尾递归的方法,附带算法的设计思路和分析-Hanoi Tower recursive calls and the elimination of tail recursion method with the algorithm design and analysis of ideas
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:9216
    • 提供者:齐笑尘
« 1 2 3 4 5 6 78 9 10 11 12 ... 26 »

源码中国 www.ymcn.org