/* animation */ .a-bounce,.a-flip,.a-flash,.a-shake,.a-swing,.a-wobble,.a-ring{-webkit-animation:1s ease;-moz-animation:1s ease;-ms-animation:1s ease; ...
分类:
Web程序 时间:
2018-03-02 22:17:07
阅读次数:
247
Jewel Magic UVA - 11996 这是一道用splay/非旋treap做的题(这里用的是非旋treap) 1/2/3是splay/非旋treap的常规操作。对于操作4,可以用哈希法求LCP。记hash(i,L)为子串[i,i+L-1](即第i个开始的L个)的hash值。记s[i]为序列 ...
分类:
其他好文 时间:
2018-02-27 23:23:37
阅读次数:
164
Java NIO 管道是两个线程之间的单向数据连接。Pipe有一个source通道和sink通道(内部类)。数据会被写到sink通道,从source通道读取。 给一张Pipe通道的原理图: 创建管道: 向管道写数据: 从管道读数据: read()方法返回的int值会告诉我们写入了多少个字节到缓冲区 ...
分类:
编程语言 时间:
2018-02-26 11:26:03
阅读次数:
179
Flip game is played on a rectangular 4x4 field with two-sided pieces placed on each of its 16 squares. One side of each piece is white and the other o ...
分类:
其他好文 时间:
2018-02-07 14:59:48
阅读次数:
192
Little Chris is bored during his physics lessons (too easy), so he has built a toy box to keep himself occupied. The box is special, since it has the ...
分类:
其他好文 时间:
2018-02-04 12:45:49
阅读次数:
200
1 from tensorflow.contrib.keras.api.keras.preprocessing.image import ImageDataGenerator,img_to_array 2 from tensorflow.contrib.keras.api.keras.models ...
分类:
其他好文 时间:
2018-01-31 14:24:22
阅读次数:
337
复习java基础,其中IO/NIO很重要。 IO 总结: 1.根据维度不同IO可以分为 字节流和字符流、输入流和输出流 2.特点是只能单向输出,输入 3.执行流程大体一致 File —— FileInputStream / FileOutputStream / FileReader / FileWr ...
分类:
其他好文 时间:
2018-01-31 14:23:14
阅读次数:
165
Java的NIO中有关Buffer的几种常用方法比如clear,rewind和flip到底有哪些区别。下面给大家这三种方法的源码,方便大家记忆。clear()方法用于写模式,其作用为情况Buffer中的内容,所谓清空是指写上限与Buffer的真实容量相同,即limit==capacity,同时将当前 ...
Given a positive integer, output its complement number. The complement strategy is to flip the bits of its binary representation. Note: Example 1: Exa ...
分类:
其他好文 时间:
2018-01-13 21:04:19
阅读次数:
178
Given a positive integer, output its complement number. The complement strategy is to flip the bits of its binary representation. Note: Example 1: Exa ...
分类:
其他好文 时间:
2018-01-13 11:03:00
阅读次数:
158