2009-12-28 17:44今天想下载一下Spring的源代码,登录到Spring官网,傻眼了,根本找不到下载的地方!费了九牛二虎之力在网上找到了一个下载地址,记下来,免得下次再次傻找。http://s3.amazonaws.com/dist.springframework.org/releas...
分类:
编程语言 时间:
2014-08-07 21:50:50
阅读次数:
219
1.有的网页上面会显示这个,但是点击后没反应解决方案:firefox- >工具-附加组件管理器-“插件”找到“Java(TM) Platform SE 7”,把“询问是否激活”改为“总是激活”。来源:http://nufeng.net/solve-firefox-open-ebs-forms-pro...
分类:
其他好文 时间:
2014-08-07 12:01:39
阅读次数:
170
题目:Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.For example,Given:s1 = "aabcc",s2 = "dbbca",When s3 = "aadbbcbcac", r....
分类:
编程语言 时间:
2014-08-07 03:05:38
阅读次数:
291
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.For example, Given: s1 = "aabcc", s2 = "dbbca",When s3 = "aadbbcbcac", re...
分类:
其他好文 时间:
2014-08-06 22:44:32
阅读次数:
180
LCS:给出两个序列S1和S2,求出的这两个序列的最大公共部分S3就是就是S1和S2的最长公共子序列了。公共部分必须是以相同的顺序出现,但是不必要是连续的。LCS具有最优子结构,且满足重叠子问题的性质。所以我们可以用动态规划来解决LCS问题。由LCS问题的最优子结构可得出递归式:参考代码:#incl...
分类:
其他好文 时间:
2014-08-06 22:19:42
阅读次数:
204
#include#include#includeusing namespace std;int main(){int n,i;char s[100];char s1[100],s2[100],s3[100];scanf("%d%*c",&n);for(i=1;i#include#includeusi...
分类:
其他好文 时间:
2014-08-05 15:41:19
阅读次数:
301
一、transition与visibilitytransition主要包含四个属性值:执行变换的属性:transition-property,变换延续的时间:transition- duration,在延续时间段,变换的速率变化transition-timing-function,变换延迟时间tra...
分类:
其他好文 时间:
2014-08-05 15:19:49
阅读次数:
178
针对前后含有空格、有空格的、空字符串、以及null字符的判断 public static void main(String[] args) { String s1 = ""; String s2 = null; String s3 = " "; String s4 = "hello...
分类:
其他好文 时间:
2014-08-05 13:20:09
阅读次数:
207
题意是求第一个字符的前缀和后一个字符串的后缀最大的公共序列,并输出。。。
将两个字符串合并,求出kmp中的next数组就行,但要注意不要大于某个字符串的长度;
#include
#include
const int N = 50005;
#define min(a,b) ((a)
char s1[N], s2[N], s3[N * 2];
int next[N * 2];...
分类:
其他好文 时间:
2014-08-04 17:36:47
阅读次数:
207