[leetcode]Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2....
分类:
其他好文 时间:
2014-09-30 11:49:49
阅读次数:
115
如果你想字符串化宏参数扩展的结果,你必须使用两个级别的宏。1 #define xstr(s) str(s)2 #define str(s) #s3 #define foo 44 str (foo)5 ==> "foo"6 xstr (foo)7 ==> xstr (4)8 ...
分类:
其他好文 时间:
2014-09-30 00:35:01
阅读次数:
212
dp[k1][k2]:s1[0...k1-1]和s2[0...k2-1]能否合成s3[0...k1 + k2 - 1]
bool isInterleave(string s1, string s2, string s3) {
if (s3.size() != s1.size() + s2.size()) return false;
vector> dp(s...
分类:
其他好文 时间:
2014-09-28 00:41:51
阅读次数:
161
Logstash+Elasticsearch+Kibana+S3+NginxbuildourprivatelogquerysystemSystemstructureHowtosetupLogstash-index(Logstashserver)yum-yinstalljava-1.7.0-openjdkInstallandconfigureElasticsearch(Logstash1.4.2recommendsElasticsearch1.1.1)rpm--importhttp://packages.ela..
分类:
其他好文 时间:
2014-09-27 09:56:30
阅读次数:
322
题意:
给定一个字符串,从任意位置把它切为两半,得到两条子串
定义 子串1为s1,子串2为s2,子串1的反串为s3,子串2的反串为s4
现在从s1 s2 s3 s4中任意取出两个串组合,问有多少种不同的组合方法
#include
#include
#include
#include
#include
#include
#include
#include
#inc...
分类:
其他好文 时间:
2014-09-25 17:05:17
阅读次数:
165
字符串(简称串),可以将其看作是种特殊的线性表,其特殊性在于线性表的数据元素的类型总是字符性,字符串的数据对象红豆为字符集。
串是由0个或多个字符组成的有限序列。一般记作:s = "s1 s2 s3 .... sn",,其中,s是串名,用双引号括起来的字符序列称为串的值,si(1
串中的几个术语:
1. 空串: 由0个字符组成的串称为空串,空串不包含任何字符,其长度为0。...
分类:
其他好文 时间:
2014-09-23 03:48:13
阅读次数:
202
Interleaving String
Total Accepted: 15409 Total
Submissions: 79580My Submissions
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.
For example,
Given:
s1 = ...
分类:
其他好文 时间:
2014-09-21 23:59:11
阅读次数:
241
RubyGems 镜像- 淘宝网 http://110.75.120.11/为什么有这个?由于国内网络原因(你懂的),导致rubygems.org存放在 Amazon S3 上面的资源文件间歇性连接失败。所以你会与遇到gem install rack或bundle install的时候半天没有响应,...
分类:
其他好文 时间:
2014-09-21 14:28:10
阅读次数:
214
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", retur...
分类:
其他好文 时间:
2014-09-20 13:29:18
阅读次数:
178
换个source gem update --system --source http://production.s3.rubygems.org
分类:
其他好文 时间:
2014-09-18 19:13:34
阅读次数:
145