关于后缀自动机我实在不好意思说些啥,这确实是我学过最难得算法,就到这一刻我还有点小细节没弄懂,但大体都明白了,clj老师不愧是传奇人物,太强啦。 关于后缀数组,详细还是要看陈老师的ppt,结合网上的解释,加油。 转自:http://blog.csdn.net/thy_asdf/article/det ...
分类:
其他好文 时间:
2017-12-14 18:01:43
阅读次数:
150
List> list = [["loc": "A-02-01","code":"asdf"],["loc": "B-01-01","code":"ff"], ["loc": "B-01-01","code":"23"], ["loc": "A-01-04","code":"ghg&q ...
分类:
编程语言 时间:
2017-11-20 13:02:24
阅读次数:
219
#定义类的两种方式 #问:对象是由类创建?类是由Type创建。 #方式一: class Foo(object): class Meta: model = 'asdf' #方式二: _meta = type('Meta',(object,),{'model':'asdf'}) Foo = type(' ...
分类:
其他好文 时间:
2017-10-23 20:02:45
阅读次数:
184
http://www.cnblogs.com/tianzijiaozi/diary/2017/08/10/7340813.html 一切皆对象 Java 1、 利用new关键字创建新对象 ★ String s=new String(“asdf”); 这个过程做了哪些操作呢? ⑴ 申请存储空间⑵ 调用 ...
分类:
编程语言 时间:
2017-10-09 21:03:43
阅读次数:
232
在python 下面一个包含中文字符串的列表(list)或字典,直接使用print会出现以下的结果: >>> dict = {"asdf": "我们的python学习"} >>> print dict {'asdf': '\xe6\x88\x91\xe4\xbb\xac\xe7\x9a\x84pyt ...
分类:
编程语言 时间:
2017-09-27 21:04:19
阅读次数:
234
方法一:Spring Boot将所有的错误映射到/error,实现ErrorController接口 请求一个错误的地址:localhost:8080/asdf,就会跳转到 error/error.ftl 页面。 ...
分类:
编程语言 时间:
2017-09-20 00:36:58
阅读次数:
1773
openssl命令行工具详解(openssl的命令众多,请酌情处理与记忆) 在命令行输入:openssl asdf,可以显示openssl的命令说明 1:Standard commands(标准命令) 2:Message Digest commands(消息摘要命令) 3:Cipher comman ...
分类:
其他好文 时间:
2017-09-17 22:02:53
阅读次数:
183
1. 数据类型 int str list tuple dict 2.for和while 3. 编码 ascii - 8 unicode - 16,32 utf-8 - 8 ~ 32 gbk - 16 4. 字符串格式化 - "asdf%s,sdfsdf%d" %('11',4) - "asdf%s, ...
分类:
编程语言 时间:
2017-08-22 19:45:05
阅读次数:
173
hashlib 使用 hashlib.md5() m.update(“sdaf”) hmac hmac.new(“asdf”,”asdfiasd天王盖地虎f”.encode(encoding=”utf-8”));re 模块match() 从头开始search() 查询所有 只匹配一次findall(... ...
分类:
编程语言 时间:
2017-08-06 23:10:58
阅读次数:
181
p21~p24: 1、操控对象的方法:引用 2、对象与引用的关系 3、通常,必须对对象采用一种更通用的初始化方法。 (用String s = new String("asdf");取代String s = "asdf";?) 4、创建对象的方法:new操作符 5、程序运行时内存的分配。 6、对象存储 ...
分类:
编程语言 时间:
2017-02-13 15:34:08
阅读次数:
161