搜索资源列表
EditDistance
- 编写的原始编辑距离算法,做成了界面的形式。字符串等长部分用异或写的,字符串不等长是用编辑距离写的。-the original edit distance algorithm
EditDistance
- C#的计算编辑距离的代码。可指定需要计算的区间以及操作代价函数。算法用动态规划方法实现。-C# Edit distance calculation code. Calculation required to specify the range and operating cost function. Algorithm using dynamic programming method.
EDITDIS
- IMPLEMENTATION OF DYNAMIC PROGRAMMING ALGORITHMS FOR EDITDISTANCE PROBLEM IN C
editdistance
- 编辑距离,未成功,想和各位同仁商议,请多指教-edit distance
EditDistance
- 设A 和B 是2 个字符串。要用最少的字符操作将字符串A 转换为字符串B。这里所说的字符操作包括 (1)删除一个字符; (2)插入一个字符; (3)将一个字符改为另一个字符。 将字符串A变换为字符串B 所用的最少字符操作数称为字符串A到B 的编辑距离,记为d(A,B)。试设计一个有效算法,对任给的2 个字符串A和B,计算出它们的编辑距离d(A,B)。-For A and B are two strings. Operation to use at least the ch
EditDistance
- Edit Distance algorithm between two srings.
EditDistance
- 计算两个字符串的编辑距离。
EditDistance
- 编辑距离,算法导论上面的题目,用C++ 实现的-Edit distance, Introduction to Algorithms above topics implementation using C++
editdistance
- 为了把一个原文本串x[1..m]转化成目的串y[1..n],可以执行各种转换操作,目的是,给定的x和y,产生一系列的转换把x变成y,每一个转换操作都有一个相关的代价。我们假设每个操作的代价是已知的常数。此外,还假设复制和替换的单个代价小于删除和插入操作的合并代价;一个给定的转换操作序列的代价等于序列中单个操作的代价之和。-In order to bring a text of the string x [1 .. m] into the purpose string y [1 .. n], ca
editdistance
- edit distance for linux API Driver.
editdistance
- using dynamic programming to solve edit distance problem-edit distance is a classic problem of dynamic programming
editdistance
- soundx 和 编辑距离的程序 输入两个单词进行比较(soundx and edit distance)
xoreeerred
- Editdistance是算法导论中经典的问题了,本代码以special的风格表示清楚了编辑距离问题,看看吧,()