CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 数据结构算法演示

搜索资源列表

  1. linsang

    0下载:
  2. 很多涉及图上操作的算法都是以图的遍历操作为基础的,此程序演示出图的遍历的过程。通过邻接矩阵存储结构实现数据俄的输入,实现图的深度优先遍历和广度优先遍历过程的演示,对异常输入信息报错。-map of algorithms are plans to traverse the basis for the operation, this procedure demonstrated map out the ergodic process. Through the adjacency matrix of
  3. 所属分类:文件操作

    • 发布日期:2008-10-13
    • 文件大小:1793
    • 提供者:刘晴
  1. PWM_MotoB

    2下载:
  2. 1.本示例将演示电机的闭环控制,即以单位时间内的码盘脉冲输出为反馈,以单位时间内 // 欲达到的脉冲数为输入,以变占空比的PWM波为输出。使用的算法为经典的PID控制算法 // 该算法具有实现方便,参数整定容易,控制鲁棒性好等优点。借助我们的串口虚拟示波 // 器软件,用户可以很方便地整定出一套满意的参数。 //2.PID算法要处理的数据不外乎输入与反馈的偏差(做比例运算),本次偏差与上一次偏差 // 的差(做微分运算,离散化以后就是差分运算),所有变差的累积(积分运算,离散
  3. 所属分类:DSP program

    • 发布日期:2017-05-02
    • 文件大小:873392
    • 提供者:王帅
  1. KMP---MFC

    0下载:
  2. 数据结构里面的KMP算法的可视化演示程序 MFC实现-Visualization of data structures inside the KMP algorithm demo program MFC implementation
  3. 所属分类:Data structs

    • 发布日期:2017-11-23
    • 文件大小:4306021
    • 提供者:jerry
  1. Floyd

    0下载:
  2. Java 弗洛伊德算法的GUI演示 数据结构课程设计-Java Floyd algorithm the GUI demo data structure curriculum design
  3. 所属分类:Data structs

    • 发布日期:2017-11-18
    • 文件大小:22129
    • 提供者:陈首新
  1. dasdadsa

    0下载:
  2. 数据算法与结构里面许多算法的演示,方便大家弄懂。你值得拥有!-Data algorithm and architecture inside many algorithms demo, to facilitate understand. You deserve!
  3. 所属分类:software engineering

    • 发布日期:2017-11-24
    • 文件大小:958973
    • 提供者:林靖雄
  1. SortAlgorithm

    0下载:
  2. 数据结构中的排序算法,算法演示,包含了三个算法的演示。-Sorting algorithm data structure, algorithm demo, demo contains three algorithms.
  3. 所属分类:Console

    • 发布日期:2017-06-13
    • 文件大小:20756051
    • 提供者:lipingyang
  1. DS-Algo-VC

    0下载:
  2. 数据结构人工智能领域特别给力的算法演示,很适合初学者的使用,真实好用,特别给力-Special data structure to the force field of artificial intelligence algorithms books, it is suitable to use for beginners, real nice, especially to the force
  3. 所属分类:Data structs

    • 发布日期:2017-05-14
    • 文件大小:3386109
    • 提供者:熊元燚
  1. Graph

    0下载:
  2. VC++编写的数据结构图算法演示系统,可作毕业设计系统,包含深、广度遍历,最小生成树,拓扑排序,最短路径算法。-Graph algorithm operating system,include depth/breath first search,minitree,topsort,shortestpath.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-24
    • 文件大小:73090
    • 提供者:songyang
  1. Data-structure-Flash-animation

    0下载:
  2. 用动画的方式描述数据结构常用算法的过程,将抽象的数据结构过程用动画描述使人一看就明白,是学习数据结构的好资料,里面包含数据结构里面的各种算法的动画演示,比如各种排序法过程的动画演示,各种查找方法的动画演示,二叉树的添加删除操作的动画演示等等。-Way of describing the process by animation algorithm commonly used data structures, abstract data structures described by animat
  3. 所属分类:software engineering

    • 发布日期:2017-04-16
    • 文件大小:487625
    • 提供者:zhang ming
  1. Data-Structure-SWF

    0下载:
  2. 数据结构的各个算法的Flash动画演示,非常全,非常生动。SWF格式,直接就能打开。学习数据结构必备。-Flash animation of each algorithm data structure, very full, very vivid. SWF format, can be opened directly. Learning the necessary data structures.
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:963031
    • 提供者:whistlezl
  1. Data-Structures-and-Algorithms-Demo

    0下载:
  2. 数据结构和算法演示,以flash和用户互动的方式展示数据结构的基本特性。-Data Structures and Algorithms Demo
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:989622
    • 提供者:波兮
  1. ShortPath

    0下载:
  2. 单源点最短路的Dijkstra算法,实现了界面以及动态演示过程,运行通过,精心编写,对于理解数据结构等非常有用,绝对独创。-Dijkstra shortPath
  3. 所属分类:Other systems

    • 发布日期:2017-04-15
    • 文件大小:6574
    • 提供者:mcf
  1. Sort

    0下载:
  2. 数据结构 排序算法的演示 模板类排序算法,输出每次排序结果,含有: 1.直接插入排序算法 2.冒泡排序算法 3.简单选择排序算法 4.堆排序算法 5.快速排序算法 6.归并排序算法 -Sorting algorithms, data structure of demonstration Template class sorting algorithms, output each sort results, containing: 1. Direct ins
  3. 所属分类:Console

    • 发布日期:2017-05-12
    • 文件大小:3027542
    • 提供者:屈兴
  1. Data-structure-

    0下载:
  2. 数据结构与算法分析程序演示:包括线性表,串,栈和队列,树,图-Data structure and algorithm analysis program demonstrates: including linear tables, strings, stacks and queues, trees, graphs
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:548284
    • 提供者:
  1. shujujiegousuanfayanshi

    0下载:
  2. 数据结构各种算法的动漫演示,是用于对数据结构的初学者,还可以是对算法不是很了解其内部的运算过程-Data structure algorithms animation demo, the data structure is used for beginners, but also is not very understanding of the algorithm of its internal operation process
  3. 所属分类:Other systems

    • 发布日期:2017-05-03
    • 文件大小:959778
    • 提供者:zhuhao
  1. ggggg

    0下载:
  2. 01背包算法的仿真与动态演示,非常好,对数据结构的理解有帮助。-01 knapsack algorithm simulation and dynamic demonstration, very good, to understand the data structure help.
  3. 所属分类:Data structs

    • 发布日期:2017-04-27
    • 文件大小:185048
    • 提供者:liusong
  1. Data-Structures-and-Algorithms

    0下载:
  2. 《数据结构与算法》的教学过程中,需要使用各种演示工具以帮助学习者理解课程内容。现有的演示平台存在不少缺点,无法满足学习者新的需求。针对数据结构课程的特点进行分析,根据演示平台的基本要求,结合Java scr ipt语言的特性,提出基于HTML5与Create JS技术构建新型演示平台的方法,为跨平台体验与动态开发等问题提供解决方案,总结实现步骤并提供运行示例。 -Data Structures and Algorithms in the teaching process, we need
  3. 所属分类:Project Design

    • 发布日期:2017-04-29
    • 文件大小:196866
    • 提供者:刘某某
  1. src-BP

    0下载:
  2. BP算法的神经网络的源代码, 可以根据向量建立网络,网络的训练结果和初始结构可以用XML保存和载入。 其中 Compressor/TrainerWithDiagram.class , 是一个用于演示的训练器, 产生制定范围内的数,生成随即样本, 并训练。 MainClass.class , 指一个数据压缩器的启动界面。(BP algorithm of neural network source code, you can build a network according to the ve
  3. 所属分类:Java编程

    • 发布日期:2017-12-31
    • 文件大小:30720
    • 提供者:仙人掌2017
« 1 2 3 4 5 6 7 8»
搜珍网 www.dssz.com