题目大意:
给你N个模式串,和一个文本串。问:文本串中共出现了几个模式串。
思路:
这道题是AC自动机的基础题目。就是求文本串中出现的模式串个数。用Val[]数组来标记模式串。
最后用ans累加模式串个数。...
分类:
其他好文 时间:
2015-05-23 00:05:07
阅读次数:
184
The fastfood chain McBurger owns several restaurants along a highway. Recently, they have decided to build several depots along the highway, each one located at a restaurent and supplying several of t...
分类:
其他好文 时间:
2015-05-23 00:05:57
阅读次数:
135
程序源代码复制到word格式不变将编程环境中带格式源代码复制到notepad++中,然后如图所示
选择NppExport中的Export to RTF ,将源代码导入到RTF文件中保存,再将RTF文件中的源代码赋值到Word中,这样就OK了。...
分类:
其他好文 时间:
2015-05-23 00:06:56
阅读次数:
116
C语言...
分类:
编程语言 时间:
2015-05-23 00:07:43
阅读次数:
179
#include int
main(int argc, char **argv)
{
union {
short s;
char c[sizeof(short)];
} un; un.s = 0x0102;
if (sizeof(short) == 2) {
if (un.c[0] == 1 && un.c...
分类:
其他好文 时间:
2015-05-23 00:04:24
阅读次数:
114
Fragment在《暗黑3天梯榜》中使用的场景在《Android编程权威指南》中采用了一种激进的态度来对待Fragment,即“总是使用fragment原则”。《Android编程权威指南》英文名称是《Android Programming the big nerd ranch guide》,很多技术文章都是基于这本书的,在还不是很了解的情况下,我盲目的遵循了这个激进的观点。开发出了我的这个App《...
分类:
其他好文 时间:
2015-05-23 00:05:53
阅读次数:
152
身处在互联网这个行业,有时也在想,什么是互联网精神。这次因为业务关系,去了趟六祖的故乡,六祖在...
分类:
其他好文 时间:
2015-05-23 00:04:14
阅读次数:
202
Problem 2111 Min Number
Accept: 586 Submit: 1139
Time Limit: 1000 mSec Memory Limit : 32768 KB
Problem Description
Now you are given one non-negative integer n in 10-base notation, ...
分类:
其他好文 时间:
2015-05-23 00:04:53
阅读次数:
149
??
dynamic web project是Eclipse的项目,与其对应的有static web project,前者指动态web项目,包含一些动态代码,如java;而static web project则仅包含静态页面文件.
MyEclipse对Eclipse进行了扩展,如:web project可以添加一些开源的框架支持,比如Struts、Hibernate等等.
也...
分类:
Web程序 时间:
2015-05-23 00:04:04
阅读次数:
1712
解决enq: TX - index contention的常用方法...
分类:
其他好文 时间:
2015-05-23 00:03:42
阅读次数:
200
链接 :
??
http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=20837
http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=21278
求割顶的裸题。
UVA - 315
#include
#include
#include
#i...
分类:
Web程序 时间:
2015-05-23 00:03:21
阅读次数:
190
Zookeeper应用场景:
分布式队列
FIFO(先进先出)
Barrier(同步队列)
共享锁
集群管理
leader选举
命名服务
分布式应用配置项的管理等
FIFO设计思路
1.在/queue-fifo的目录下创建 SEQUENTIAL 类型的子目录 /x(i),这样就能保证所有成员加入队列时都是有编号的。
2.出队列时通过 getChildr...
分类:
其他好文 时间:
2015-05-23 00:03:00
阅读次数:
219
转载请注明出处:明桑Android
在Android开发中,常需要从远程获取图片并显示在客户端,当然我们可以使用原生HttpUrlConnection和AsyncTask等操作来完成,但并不推荐,因为这样不仅需要我们编写大量的代码,还需要处理缓存和下载管理等,最好自己封装成库或者采用第三方库;
Picasso:A Powerful Image Downloading and Cachi...
分类:
移动开发 时间:
2015-05-23 00:05:35
阅读次数:
487
Rotate Image
You are given an n x n 2D matrix representing an image.
Rotate the image by 90 degrees (clockwise).
Follow up:
Could you do this in-place?
解题思路:
题目要求原地算法。假设坐标轴如上所示。顺时针...
分类:
其他好文 时间:
2015-05-23 00:05:24
阅读次数:
212
1. 下载android studio编辑器
打开 https://developer.android.com/sdk/index.html 就可以看到相应的android studio。
mac下载地址:https://dl.google.com/dl/android/studio/install/1.2.1.1/android-studio-ide-141.1903250-mac.dmg
...
分类:
移动开发 时间:
2015-05-23 00:02:39
阅读次数:
195
链接 :
??
http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=18888
题意 : 一个有向图,如果从0点出发到达某一点必须经过某些点 题目就是求出这些点。
点数不多 可以删点然后dfs搜索,之前能搜到的点 但是删了该点之后搜不到了 那么这个删点就是从起始点搜不到的必经之路。
#include
#...
分类:
其他好文 时间:
2015-05-23 00:03:07
阅读次数:
217
模拟电脑程序安装的进度条
提供两种方式
代码如下:
#include
#include
#include
void proc()
{
int i = 0;
for (i = 1; i <= 100; ++i)
{
printf("-");
}
fflush(stdout);
for (i = 1; i <= 100; ++i)
{
print...
分类:
编程语言 时间:
2015-05-23 00:02:46
阅读次数:
223