CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - Scan

搜索资源列表

  1. 公共子序列

    0下载:
  2. 本算法实现的是对两个单字符串的扫描,找出其最长公共子序列。-the algorithm to achieve the two-string scan, identify its longest public sequences.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:819
    • 提供者:汪永威
  1. AprioriC++

    0下载:
  2. 用c++编写的apriori算法,数据挖掘的经典算法,但需要扫描多次数据库,已逐渐被fpgrowth代替-prepared with the algorithm algorithms, data mining algorithms classic, but need to scan multiple databases, have gradually been replaced fpgrowth
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:67851
    • 提供者:linus yue
  1. scan-haff

    0下载:
  2. 通过本课程设计,应使学生掌握哈夫曼编码的特点、存储方法和基本原理,培养学生利用C++语言正确编写程序及调试程序的能力,运用数据结构知识解决实际问题的能力,为后续计算机专业课程的学习打下坚实的基础-passage of the curriculum design, should help students grasp the characteristics of Huffman coding, storage and basic principles, Training students to u
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:261547
    • 提供者:李明
  1. Scan

    0下载:
  2. 经典算法实现,扫描线算法的实现,环境为vc2005
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1080691
    • 提供者:tangWH
  1. express

    0下载:
  2. 这个源码是用来通过顺序的扫描输入流中的数据,来计算表达式,这个代码在一般的表达式计算,比如:解析器构造中对表达式的处理都是有用的-This source is used to scan through the sequence of input stream data, to calculate the expression, the code in the general expression of the calculation, such as: Parser Construction o
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:1944
    • 提供者:ssj
  1. find

    0下载:
  2. 数据结构中的顺序表和数表的查找算法。基本思想:从表的一端开始,顺序扫描线性表,依次将扫描到的结点的关键字与给定值k进行比较,若相等,则查找成功;若扫描到表的另一端仍没有找到与关键字k相等的结点,则查找失败。-Data structure in the order list and several forms of the search algorithm. The basic idea: to start from one end of the table, the order of the l
  3. 所属分类:Data structs

    • 发布日期:2017-03-25
    • 文件大小:1043
    • 提供者:wuyoudanbo
  1. LL1wenfapanding

    0下载:
  2. LL(1)文法使用的是确定的自顶向下的分析技术。LL(1)的含义是:第一个L表明自顶向下分析是从左向右扫描输入串,第2个L表明分析过程中将使用最左推导,1表明只需向右看一个符号便可决定如何推导,即选择哪个产生式(规则)进行推导。-LL (1) grammar is used to determine the top-down analysis techniques. LL (1) the meaning is: the first show that L is top-down analysis
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:284823
    • 提供者:小江
  1. collectioncaculator

    0下载:
  2. 运用顺序表的基本运算。(插入、删除) 1)集合的数据类型为一个结构体,其中包括一个数组用来存放集合元素,一个整型数据来统计集合元素的个数。生成两个集合A和B。 2)将集合中的元素按照从小到大排序。具体方法为:从第二个元素起(i),依次扫描每个元素前面的所有元素(j),若i<j,则将j插在i的前面,结束对i的排序,照这个方法,再依次对i后的元素进行排序。 3)求两集合的并:生成一个新集合C,将集合A的元素复制过来,对集合B的元素依次进行扫描,若没有该元素,则插入,若已存在,则扫描
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1145
    • 提供者:weiwei
  1. generallist

    0下载:
  2. 求广义表的深度 利用数组传值,建立单链表并将其初始化。 利用递归求出每个子表的深度,进而求出广义表的深度。 先看两个表的深度是否相同,若相同,对表A中的每个元素i,扫描表B中的每个元素,对与i深度相同的元素j,再将i中的每个元素与j中的每个元素进行比较。(运用递归算法)-Seeking a broad depth of the table The use of an array passed by value, establish a single list of its in
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:1722
    • 提供者:weiwei
  1. scan_claculater

    0下载:
  2. 简单的计算器程序,利用常用的数据结构进行扫描,改变优先级,再计算-simple scan and calculate program
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:8455
    • 提供者:wanglongtao
  1. wmScaner

    0下载:
  2. 基于wm的多模字符串扫描,稍微做了点改进,预先多扫描后一个字符,使的能够多跳一个位置。-Wm-based multi-mode string scanning, done some little improvements over pre-scan a character, so a place that can multi-hop.
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:38612
    • 提供者:陈剑
  1. sjjgysffxcmsmgMark.Allen.Weiss.smb

    0下载:
  2. [数据结构与算法分析C.描述].(美国)Mark.Allen.Weiss.扫描版.pdf-[Data Structures and Algorithm Analysis C. Descr iption]. (USA) Mark.Allen.Weiss. Scan version. Pdf
  3. 所属分类:Data structs

    • 发布日期:2017-06-15
    • 文件大小:24165477
    • 提供者:张阳
  1. Bubble_Sort

    0下载:
  2. 用c语言的数据结构算法。采用自下向上扫描,对R做冒泡排序-C language data structures with algorithms .Using bottom-up scan, on the R to do bubble sort
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:782
    • 提供者:李阳
  1. struct

    0下载:
  2. 数据结构(C语言版)严蔚敏_吴伟民高清扫描版,含答案-Data structure (C-language version) _ Wu Weimin Yan Wei-min scan high-definition version, with answers
  3. 所属分类:Data structs

    • 发布日期:2017-05-24
    • 文件大小:7916289
    • 提供者:凌云
  1. 1

    0下载:
  2. C++数据结构与算法,高清,非扫描版.对学习C++有很大的帮助!-C++ data structures and algorithms, high-definition, non-scan version. On learning C++ is very helpful!
  3. 所属分类:Data structs

    • 发布日期:2017-05-24
    • 文件大小:7961296
    • 提供者:lan
  1. c

    0下载:
  2. 1、 题目的要求是通过磁盘调度算法的模拟设计,了解磁盘调度的特点,其主要任务是模拟实现FCFS、SSTF、SCAN、C-SCAN算法,并计算及比较磁头移动道数。-1, the subject request is simulated through the disk scheduling algorithm designed to understand the characteristics of disk scheduling, to achieve its main task is to s
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:1347
    • 提供者:fire
  1. Kruskal

    0下载:
  2. 采用Kruskal算法求最小生成树主要数据结构 edgeset GE 存放图中的所有边 int n,int e 存放图中的顶点数与边数 edgeset C 存放生成树中的边 vexlist gv 图中结点的顶点值 adjmatrix s 用来处理图中结点的查找与合并 int m1,m2 一条边上两顶点所属集合的序号 int k 最小生成树中的边数 int d //图中待扫描边元素的下标-For the Minimum Spanning Tree by Krusk
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:1765
    • 提供者:mgh
  1. fill

    0下载:
  2. 扫描线法填充多边形,链表形式,适用于所有不带岛的多边形-Filled polygon scan line method, the list form, for all non-island polygon
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:1092
    • 提供者:xieyun
  1. labe_forOpencv

    0下载:
  2. 本例使用了opencv中图像数据结构IplImage :首先进行第一次扫描,标记连通区域;然后对等价标记进行合并,最后进行第二次扫描,对等价标记进行重新标记。-This example uses a data structure of the opencv: IplImage. First, scan for the first time, marking connected region then mark the merger of the equivalence, and final
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:1162
    • 提供者:雄伟
  1. 7

    0下载:
  2. 编程实现SSTF算法和SCAN算法 掌握SSTF算法和SCAN算法的原理,并编程实现-Programming algorithm SSTF and SCAN algorithms SSTF and SCAN algorithms to master the principles of algorithm and programming
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:742
    • 提供者:瓜哥
« 12 »
搜珍网 www.dssz.com