码迷,mamicode.com
首页 >  
搜索关键字:S3    ( 1097个结果
Interleaving String
[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
Interleaving String [leetcode] DP
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+Nginx set up our private log query system
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
poj3007 Organize Your Train part II, 字符串hash
题意: 给定一个字符串,从任意位置把它切为两半,得到两条子串 定义 子串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
数据结构(C实现)------- 串
字符串(简称串),可以将其看作是种特殊的线性表,其特殊性在于线性表的数据元素的类型总是字符性,字符串的数据对象红豆为字符集。     串是由0个或多个字符组成的有限序列。一般记作:s = "s1 s2 s3 .... sn",,其中,s是串名,用双引号括起来的字符序列称为串的值,si(1 串中的几个术语:     1. 空串: 由0个字符组成的串称为空串,空串不包含任何字符,其长度为0。...
分类:其他好文   时间:2014-09-23 03:48:13    阅读次数:202
Leetcode dp Interleaving String
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 镜像 - 淘宝网
RubyGems 镜像- 淘宝网 http://110.75.120.11/为什么有这个?由于国内网络原因(你懂的),导致rubygems.org存放在 Amazon S3 上面的资源文件间歇性连接失败。所以你会与遇到gem install rack或bundle install的时候半天没有响应,...
分类:其他好文   时间:2014-09-21 14:28:10    阅读次数:214
Leetcode: Interleaving String
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
gem install jekyll HTTP Response 301
换个source gem update --system --source http://production.s3.rubygems.org
分类:其他好文   时间:2014-09-18 19:13:34    阅读次数:145
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!