搜索资源列表

  1. 编辑距离问题

    0下载:
  2. 此算法也是非常常用的算法之一,在这个算法中我们特别要明白编辑距离问题的实质所在.-This algorithm is very commonly used algorithm, the algorithm in particular, we need to understand edit distance the real problem lies.
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:6095
    • 提供者:周华
  1. 编辑距离问题

    0下载:
  2. 此算法也是非常常用的算法之一,在这个算法中我们特别要明白编辑距离问题的实质所在.-This algorithm is very commonly used algorithm, the algorithm in particular, we need to understand edit distance the real problem lies.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-17
    • 文件大小:6144
    • 提供者:周华
  1. EditDistance

    0下载:
  2. 用动态规划算法思想求最小编辑距离,即近似字符串匹配问题-Thinking of using dynamic programming algorithm for the minimum edit distance, that is, approximate string matching problem
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-17
    • 文件大小:1024
    • 提供者:Doreen
  1. StringMatch

    0下载:
  2. 字符串匹配问题中求最小编辑距离的源码,精简实用,是作业的好帮手!-String matching problem in order to minimize the distance of the source editor to streamline the utility is operating a good helper!
  3. 所属分类:其他小程序

    • 发布日期:2024-06-17
    • 文件大小:310272
    • 提供者:wangfang
  1. tt

    0下载:
  2. Problem A:编辑距离问题 Time Limit:1000MS Memory Limit:65536K Total Submit:157 Accepted:79 Descr iption 设A 和B 是2 个字符串。要用最少的字符操作将字符串A 转换为字符串B。这里所说的字符操作包括 (1)删除一个字符; (2)插入一个字符; (3)将一个字符改为另一个字符。 将字符串
  3. 所属分类:其他小程序

    • 发布日期:2024-06-17
    • 文件大小:1024
    • 提供者:方亚芳
  1. code

    0下载:
  2. 王晓东 算法设计 课后部分答案 n后 , 编辑距离问题 , 标准2维表问题 ,独立任务最优调度 , 会场安排 , 矩阵相乘 , 圈乘运算 , 输油管道问题 , 兔子生崽 , 邮局选址 , 又重复元素排列问题 , 找第二名学生成绩 , 众数问题 , 字典序问题 , 租用游艇问题 , 最长公共子序列问题 ,最大k乘积 , 最大长方体 , 最少硬币 , 最小费用购物, 最优合并-Algorithm acm C++
  3. 所属分类:其他小程序

    • 发布日期:2024-06-17
    • 文件大小:12288
    • 提供者:leyuan
  1. distanceEdition

    0下载:
  2. 用动态规划的方法来实现的编辑距离问题。没了-Using dynamic programming methods to achieve the edit distance problem. Gone
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-17
    • 文件大小:1024
    • 提供者:killer
  1. program

    0下载:
  2. 包含三个文件,都是动态规划类问题,分别是石子合并问题,编辑距离问题,邮局选址问题-Contains three files are dynamic programming type of problem, namely, stone merger, edit distance problem, the post office location problem
  3. 所属分类:Windows编程

    • 发布日期:2024-06-17
    • 文件大小:2048
    • 提供者:lonely917
  1. bianjijuliwenti

    0下载:
  2. 编辑距离问题,适合算法课提交的程序,VC++下编译通过的-Edit distance problem, the procedure for submission algorithm class, VC++ compiled by the
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-06-17
    • 文件大小:1024
    • 提供者:wjb
  1. edit

    0下载:
  2.  问题描述: 设A和B是2个字符串。要用最少的字符操作将字符串A转换为字符串B。这里所说的字符操作包括 (1)删除一个字符; (2)插入一个字符; (3)将一个字符改为另一个字符。 将字符串A变换为字符串B所用的最少字符操作数称为字符串A到B的编辑距离,记为d(A,B)。试设计一个有效算法,对任给的2个字符串A和B,计算出它们的编辑距离d(A,B)。 -this is a project
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-17
    • 文件大小:1024
    • 提供者:ziv
  1. algorithm

    0下载:
  2. 一些经典算法的java实现:包括:二分查找,最优二搜索树,编辑距离,哈夫曼树,最长公共子序列,矩阵连乘问题,最短路径优先-Some classic algorithm java implementation: including: binary search, and optimal two search tree, the edit distance Huffman tree, the longest common subsequen
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-06-17
    • 文件大小:7168
    • 提供者:谢虹宇
  1. dstring

    0下载:
  2. 动态规划——编辑距离问题 设A和B是2个字符串。要用最少的字符操作将字符串A转换为字符串B。-Dynamic Programming- edit distance problem Let A and B are two strings. Characters use the least action string A converted to a string B.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-17
    • 文件大小:1024
    • 提供者:yan
  1. 4

    0下载:
  2. 任务:从以下题目中任选一题完成,要求应用动态规划策略设计解决方案。 1、编辑距离问题。 2、石子合并问题。 3、租用游艇问题。 提交结果:程序设计的源代码及其分析说明和测试运行报告 -Task: Choose a topic from the following questions to complete, requires the application of dynamic programming stra
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-17
    • 文件大小:215040
    • 提供者:叶明杰
  1. distance_SA13006029

    0下载:
  2. 编辑距离问题的C语言源代码 计算机算法设计与分析中的题目 动态规划算法-C language source code for a computer algorithm design and analysis of dynamic programming algorithm to edit the title from issue
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-17
    • 文件大小:1137664
    • 提供者:冰仔
  1. EditDistanceProblem

    0下载:
  2. 编辑距离问题的Java语言实现,包括算法文件和测试文件,解压后直接运行即可- U7F16 u8DD1 u8B1 u8B0 u5B0 u08H U538B u540E u76F4 u63A5 u8FD0 u884C u5373 u53EF
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-06-17
    • 文件大小:1024
    • 提供者:保密
  1. 王敬贤-SA16168143-第3次作业

    0下载:
  2. 关于两个字符串s1,s2的差别,可以通过计算他们的最小编辑距离来决定。用C++设计动态规划算法解决此类问题(The difference between the two strings s1, s2, can be determined by calculating their minimum edit distance.Using c + + design dynamic programming algorithm to solve
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2024-06-17
    • 文件大小:2593792
    • 提供者:心晴紫贝
  1. 编辑距离

    0下载:
  2. 程序提示用户输入一行字符串(字符个数不超过80个,该字符串用回车符结束)。并按字母,数字及其他字符分类计数,然后将结果存入以char、digit和other为名的存储单元 字符串转换所需最短的编辑距离(The program prompts the user to enter a string of characters (no more than 80 characters, and the string ends with car
  3. 所属分类:其他小程序

    • 发布日期:2024-06-17
    • 文件大小:5120
    • 提供者:xiaozhu1998
  1. 编辑距离问题

    0下载:
  2. 编辑距离:将字符串S通过插入、删除、替换三种编辑操作,转变为字符串T,所需最少的编辑次数。(Edit distance definition: string S by inserting, deleting, replacing three editing operations, converted to string T, the minimum number of editing required.)
  3. 所属分类:Windows编程

    • 发布日期:2024-06-17
    • 文件大小:402432
    • 提供者:你若安好
  1. 1107编辑距离

    0下载:
  2. 这是一个用C++写的编辑距离问题,可供初学者学习使用(This is an editing distance problem written in c ++ that can be used by beginners)
  3. 所属分类:其他小程序

  1. xoreeerred

    0下载:
  2. Editdistance是算法导论中经典的问题了,本代码以special的风格表示清楚了编辑距离问题,看看吧,()
  3. 所属分类:其他小程序

    • 发布日期:2024-06-17
    • 文件大小:941056
    • 提供者:Thzka
« 12 »

源码中国 www.ymcn.org