2009年3月11日

字符串相似度的算法(sqlserver转和c#)

摘要: CREATE function get_semblance_By_2words ( @word1 varchar(50), @word2 varchar(50) ) returns nvarchar(4000) as begin declare @re int declare @maxLenth int declare @i int,@l int declare @t... 阅读全文

posted @ 2009-03-11 15:03 ATAK 阅读(1329) 评论(0) 推荐(0) 编辑

字符串编辑距离的c#实现

摘要: using System;/// <summary>/// Contains approximate string matching/// </summary>static class LevenshteinDistance{ /// <summary> /// Compute the distance between two strings. /// <... 阅读全文

posted @ 2009-03-11 11:27 ATAK 阅读(448) 评论(0) 推荐(0) 编辑

导航