06 2014 档案

摘要:搜索文件夹内容的小工具Github两种搜索模式的算法:BoyerMooreSearch.csusing System.Threading;using System.Collections.Generic;using System.Linq;namespace Finder.Algorithms{ ... 阅读全文
posted @ 2014-06-27 17:56 Ornithopter 阅读(1275) 评论(0) 推荐(0)
摘要:未完成,回家继续using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Algorithems{ class... 阅读全文
posted @ 2014-06-19 17:53 Ornithopter 阅读(290) 评论(0) 推荐(0)
摘要:调用ShowExample方法即可查看结果使用Debug配置编译可以查看详细匹配过程using System;using System.Collections.Generic;namespace Algorithms{ /// /// An implemention of Boyer-... 阅读全文
posted @ 2014-06-18 10:57 Ornithopter 阅读(331) 评论(0) 推荐(0)
摘要:支持有向与无向图DijistraSeach.csusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Dijis... 阅读全文
posted @ 2014-06-16 17:44 Ornithopter 阅读(228) 评论(0) 推荐(0)
摘要:支持模糊搜索(非通配符)支持搜索结果优先级(首字母匹配、连续匹配有较高优先级TrieSearch.csusing System;using System.Collections.Generic;using System.Diagnostics;using System.Globalization;u... 阅读全文
posted @ 2014-06-06 18:00 Ornithopter 阅读(751) 评论(0) 推荐(0)