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

搜索资源列表

  1. digui

    0下载:
  2. 本段代码实现的功能是:递归实现x的n次幂-The functionality of the code is: recursion x n-th power
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:674
    • 提供者:海鸥
  1. pstree

    1下载:
  2. 在linux下利用c语言实现的进程树的打印,主要通过/proc下的目录中的进程文件,获取status中的进程信息内容,然后利用递归实现进程树的打印-Under the linux process using c language to print the tree, primarily through/proc directory under the file in the process, the process to obtain status information, and then u
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:1166
    • 提供者:ZBL
  1. WuZiQi

    0下载:
  2. 本人原创的五子棋游戏,算法很独特,没有采用递归就达到了不错的结果。-My original backgammon game, the algorithm is unique, does not use recursion to achieve good results.
  3. 所属分类:Chess Poker games

    • 发布日期:2017-05-10
    • 文件大小:2062224
    • 提供者:闫煜
  1. stack

    0下载:
  2. 栈的描述,包括栈的实现和递归!里面有解释,方便理解-Descr iption of the stack, including the realization and recursion stack! There explanation, easy to understand! ! !
  3. 所属分类:Data structs

    • 发布日期:2017-04-25
    • 文件大小:125150
    • 提供者:huangmoyue
  1. Quick-sort

    0下载:
  2. Quicksort sorts by employing a divide and conquer strategy to divide a list into two sub-lists. The steps are: Pick an element, called a pivot, from the list. Reorder the list so that all elements with values less than the pivot come before the
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:1180
    • 提供者:irisrd
  1. OZ-Computer-Programming(MIT-Press)

    1下载:
  2. oz:多范式语言,  函数型语言(词法域 第一类过程 模式匹配 第一类统一语法),lazy,高阶(可实现非递归的循环),尾递归,描述式编程  面向对象(状态 Stateful/抽象数据类型 多重继承),  并行(多线程)(dataflow(数据流)线程 动态 连续 互影响),  约束编程和逻辑推理(逻辑变量 分离结构 可编程搜索策略),人工智能,  分布式(网络透明的分布式运算 组件编程 自动连接自动断线 共享变量/对象/类/和过程),  网络编程,无状态数据
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-17
    • 文件大小:4545230
    • 提供者:yuchao
  1. 2b-recursion

    0下载:
  2. 低归 低归 低归 低归 低归 低归-recusive
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-24
    • 文件大小:165313
    • 提供者:chen
  1. ClearFile

    0下载:
  2. 一个实用的文件清理工具: 1. 能指定清理路径; 2. 支持文件名匹配;(支持*, ?) 3. 支持清理文件、目录; 4. 支持目录递归; 4. 支持先出报告,而不直接删除;-A practical document clean-up tools: 1. Can specify the cleaning path 2. To support the file name matching (support*,?) 3. Support the clean-up files,
  3. 所属分类:File Operate

    • 发布日期:2017-04-08
    • 文件大小:35320
    • 提供者:xhj
  1. min_distance

    0下载:
  2. 本算法用于求一系列点集中距离最小的点对,利用分治,递归,大大减少计算量-This algorithm is used to find a point of focus from the minimum point, the use of divide and conquer, recursion, greatly reducing the computational
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:1706
    • 提供者:王彬
  1. QuickSort

    0下载:
  2. 快速排序的基本思想是把数组划分成三段,然后用递归求解-The basic idea is to quickly sort the array is divided into three sections, and then use recursion to solve
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:1746
    • 提供者:
  1. diguixinhua

    0下载:
  2. 打印金字塔形的星花,单用的算法是递归的形式。利用这个程序,可以理解递归。-Print pyramid-shaped flowers, alone in the form of the algorithm is recursive. Using this program, you can understand recursion.
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:278802
    • 提供者:点点
  1. ZipUtil

    0下载:
  2. 自写Zip工具,可压缩文件或文件夹,压缩格式为Zip,对多层文件夹结构包含递归算法,可直接用或拿来学习。-Zip Utils for file or directory,recursion examples
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-03-28
    • 文件大小:900
    • 提供者:yuqiang
  1. fenzhifa

    0下载:
  2. 分治法的思想是将一个难以直接解决的大问题分割成一些规模较小的几个相似的问题来解决,分治法的求解过程是将整个问题分解成若干个小问题后分而治之,如果分解得到的子问题相对来说还太大,则可反复使用分治策略将这些子问题分成更小的同类型子问题,直至产生出方便求解的子问题,必要时逐步合并这些子问题的解,从而得到问题的解。分治法的求解通常会用到递归,通常会说分治法是一种找大规模问题与小规模问题关系的方法,是递归设计方法的一种具体策略。分治法的基本步骤在每一层递归上都有三个步骤: ① 分解:将原来的规模相对较
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:806
    • 提供者:ss
  1. basic-knowledge-of-data-structure

    0下载:
  2. 数据结构基本入门知识,共33个ppt,全是我上课的资料,现在拿来分享。其中有:线性表,栈队列递归,串数组广义表,数与森林,图,查找,排序等等。-Knowledge of the basic entry data structure, a total of 33 ppt, all the information I have class, and now to be shared. Including: linear form, the stack queue recursion, string
  3. 所属分类:Data structs

    • 发布日期:2017-05-13
    • 文件大小:3161789
    • 提供者:jijiyaya
  1. recursion_programs.tar

    0下载:
  2. basic concepts of recursion
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-14
    • 文件大小:3911
    • 提供者:rohit ketkar
  1. lecture_03recursion

    0下载:
  2. 此资料主要用于acm初学者。递归算法是c++中一个比较重要的算法,尤其在acm中。本文深入浅出的讲解了递归算法。-This article maybe very useful to the acmer.As we all know that the recursion algorithm is very important.By reading this article you may learn a lot.
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:226741
    • 提供者:董明秀
  1. KSQX

    0下载:
  2. VC++递归法实现简单分形图形示例程序,比如扣氏曲线类定义等。大家在C/C++学习时都会遇到递归,课本上以汗诺塔为例进行讲解,然后大家都希望自己找到一个递归的实例。本代码以一个最简单的分形图形来示范递归的实现过程。 -VC++ recursion simple example of fractal graphics program, such as Button' s definition of curve classes. Everyone in the C/C++ will enc
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-29
    • 文件大小:27917
    • 提供者:madud00091
  1. Test-deep

    0下载:
  2. 用于测试在系统下可以使用VB进行最多多少层的递归。-Used for testing the system can use VB for the most number of layers recursion.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:1259
    • 提供者:wangtao
  1. DNAmatch2

    0下载:
  2. 一个具体问题:DNA有多个酶切点,已知各个酶切点切割之后的片段和从每个酶切点切开之后的组数据,求DNA原始片段序列。 对于DFS递归编程很有帮助-helpful for DFS recursion programming which coming from a specific problem!
  3. 所属分类:DNA

    • 发布日期:2017-03-29
    • 文件大小:1441
    • 提供者:唐根
  1. houzixuandawang

    0下载:
  2. C++中的经典问题,猴子选大王。用递归算法实现的代码-In c++, the Monkey King classic question choose. Use recursion algorithm code
  3. 所属分类:CSharp

    • 发布日期:2017-04-02
    • 文件大小:877827
    • 提供者:紫剑
« 1 2 ... 4 5 6 7 8 910 11 12 13 14 ... 21 »
搜珍网 www.dssz.com