09 2016 档案
摘要:using System; using System.Collections.Generic; using System.Collections.Specialized; using System.ComponentModel; using System.Linq; using System.Reflection; using System.Text; using System.Threading...
阅读全文
摘要:#region 高效比对返回匹配度最高的数据 /// /// 高效比对返回匹配度最高的数据 /// /// 源数据 /// 目标数据 /// public static Lis...
阅读全文
摘要://LD最短编辑路径算法public static int LevenshteinDistance(string source, string target) { int cell = source.Length; int row = target.Length; if (ce...
阅读全文
摘要:/*线程池ThreadPool类会在需要时增减池中线程的线程数,直到最大的线程数。池中的最大线程数是可配置的。在双核CPU中,默认设置为1023个工作线程和1000个I/O线程。也可以指定在创建线程池时应立即启动的最小线程数,以及线程池,中可用的最大线程数。如果有更多的作业要处理,线程池中线程的...
阅读全文