本文给大家分享了20个常用的java代码,都是别人项目中使用过的代码,这里推荐给大家,有需要的小伙伴可以参考下。 本文给大家分享了20个常用的java代码,都是别人项目中使用过的代码,这里推荐给大家,有需要的小伙伴可以参考下。 1. 字符串有整型的相互转换 String a = String.val ...
分类:
编程语言 时间:
2016-10-25 14:09:52
阅读次数:
218
http://acm.hdu.edu.cn/showproblem.php?pid=2222 KMP是单模式串匹配的算法,而AC自动机是用于多模式串匹配的算法。主要由Trie和KMP的思想构成。 题意:输入N个模式串,再给出一个文本串,求文本串里出现的模式串数目。 ...
分类:
其他好文 时间:
2016-10-25 02:14:47
阅读次数:
160
get() query() save() remove() delete() ...
分类:
其他好文 时间:
2016-10-23 02:55:28
阅读次数:
144
【AssetBundles】 1、通过加密AssetBundle内的内容,来保护数据。 1 string url = "http://www.mywebsite.com/mygame/assetbundles/assetbundle1.unity3d"; 2 IEnumerator Start () ...
分类:
其他好文 时间:
2016-10-22 23:29:13
阅读次数:
348
top K 问题 分治法(哈希/Trie树(公共前缀)) -> 最小堆(多线程) 重复数问题 位图法(空换时, O(n)时间) 排序问题 分治 [桶排序] 、位图法 参考: ...
分类:
其他好文 时间:
2016-10-22 15:09:43
阅读次数:
192
When looping through dictionaries, the key and corresponding value can be retrieved at the same time using the items() method. >>> >>> knights = {'gal ...
分类:
其他好文 时间:
2016-10-21 13:45:47
阅读次数:
186
界面: html: @using Abp.Web.Mvc.Extensions @{ ViewBag.CurrentPage = "BasicDatas"; } @section scripts { @Html.IncludeScript("~/Views/Admin/BasicDatas.js") ...
分类:
其他好文 时间:
2016-10-21 10:45:07
阅读次数:
205
传送门 AC自动机理解的还是不够透彻,这道题没有想出来QAQ 这个如果真的不会玩用KMP打暴力很好想到。好吧其实不应该向kmp方面想,这个多字符串匹配显然是AC自动机。给出的字符串就是给你模拟了建立Trie树的过程。然后考虑根据每个点的fail指针建立fail树。 问$str_i$在$str_j$里 ...
分类:
其他好文 时间:
2016-10-20 15:33:14
阅读次数:
243
UVALive - 3942 Remember the Word Neal is very curious about combinatorial problems, and now here comes a problem about words. Know- ing that Ray has a ...
分类:
其他好文 时间:
2016-10-14 14:16:50
阅读次数:
245