符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
将开发过程中较好的一些代码段备份一下,下面的代码是关于C#通过编辑距离计算两个字符串的相似度的代码,应该能对码农们有些帮助。
10年积累的成都网站制作、网站设计、外贸网站建设经验,可以快速应对客户对网站的新想法和需求。提供各种问题对应的解决方案。让选择我们的客户得到更好、更有力的网络服务。我虽然不认识你,你也不认识我。但先网站设计后付款的网站建设流程,更有肃南裕固族自治免费网站建设让你可以放心的选择与我们合作。
using System;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace Levenshtein
{
public delegate void AnalyzerCompletedHander(double sim);
public class LevenshteinDistance:IDisposable
{
private string str1;
private string str2;
private int[,] index;
int k;
Task task;
public event AnalyzerCompletedHander AnalyzerCompleted;
public string Str1
{
get { return str1; }
set
{
str1 = Format(value);
index = new int[str1.Length, str2.Length];
}
}
public string Str2
{
get { return str2; }
set
{
str2 = Format(value);
index = new int[str1.Length, str2.Length];
}
}
public int TotalTimes
{
}
public bool IsCompleted
{
get { return task.IsCompleted; }
}
public LevenshteinDistance(string str1, string str2)
{
this.str1 = Format(str1);
this.str2 = Format(str2);
index = new int[str1.Length, str2.Length];
}
public LevenshteinDistance()
{
}
public void Start()
{
task = new Task(Analyzer);
task.Start();
task.ContinueWith(o => Completed(o.Result));
}
public double StartAyns()
{
task = new Task(Analyzer);
task.Start();
task.Wait();
return task.Result;
}
private void Completed(double s)
{
if (AnalyzerCompleted != null)
{
AnalyzerCompleted(s);
}
}
private double Analyzer()
{
if (str1.Length == 0 || str2.Length == 0)
return 0;
for (int i = 0; i < str1.Length; i++)
{
for (int j = 0; j < str2.Length; j++)
{
k = str1[i] == str2[j] ? 0 : 1;
if (i == 0&&j==0)
{
continue;
}
else if (i == 0)
{
index[i, j] = k + index[i, j - 1];
continue;
}
else if (j == 0)
{
index[i, j] = k + index[i - 1, j];
continue;
}
int temp = Min(index[i, j - 1],
index[i - 1, j],
index[i - 1, j - 1]);
index[i, j] = temp + k;
}
}
float similarty = 1 - (float)index[str1.Length - 1, str2.Length - 1]
/ (str1.Length > str2.Length ? str1.Length : str2.Length);
return similarty;
}
private string Format(string str)
{
str = Regex.Replace(str, @"[^a-zA-Z0-9u4e00-u9fa5s]", "");
return str;
}
private int Min(int a, int b, int c)
{
int temp = a < b ? a : b;
temp = temp < c ? temp : c;
return temp;
}
public void Dispose()
{
task.Dispose();
}
}
}