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... 阅读全文
posted @ 2016-09-29 10:24 深南大道 阅读(741) 评论(0) 推荐(0) 编辑
摘要:#region 高效比对返回匹配度最高的数据 /// /// 高效比对返回匹配度最高的数据 /// /// 源数据 /// 目标数据 /// public static Lis... 阅读全文
posted @ 2016-09-23 14:27 深南大道 阅读(209) 评论(0) 推荐(0) 编辑
摘要://LD最短编辑路径算法public static int LevenshteinDistance(string source, string target) { int cell = source.Length; int row = target.Length; if (ce... 阅读全文
posted @ 2016-09-19 17:42 深南大道 阅读(349) 评论(0) 推荐(0) 编辑
摘要:/*线程池ThreadPool类会在需要时增减池中线程的线程数,直到最大的线程数。池中的最大线程数是可配置的。在双核CPU中,默认设置为1023个工作线程和1000个I/O线程。也可以指定在创建线程池时应立即启动的最小线程数,以及线程池,中可用的最大线程数。如果有更多的作业要处理,线程池中线程的... 阅读全文
posted @ 2016-09-10 21:27 深南大道 阅读(194) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示