码迷,mamicode.com
首页 >  
搜索关键字:zero clipboard    ( 2343个结果
[LeetCode] Regular Expression Matching(递归)
Implement regular expression matching with support for '.' and '*'.'.' Matches any single character.'*' Matches zero or more of the preceding element....
分类:其他好文   时间:2014-08-26 22:52:26    阅读次数:203
Regular Expression Matching (LeetCode)
Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The...
分类:其他好文   时间:2014-08-25 16:20:54    阅读次数:161
LeetCode——3Sum
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. Note: Elements in a triplet (a,b,c...
分类:其他好文   时间:2014-08-23 15:24:41    阅读次数:153
创建Linux swap
创建SWAP文件(下面指定的是8G容量,系统物理内存8G):dd if=/dev/zero of=/data/swapfile bs=1M count=8192格式化该文件mkswapswapfile加载为swapswaponswapfile查看swap情况:free -m结果:Swap: ...
分类:系统相关   时间:2014-08-21 20:55:24    阅读次数:221
PHP正则表达式的一些学习
PHP 正则表达基本语法应用学习。 ^ 开始  $ 结束 * 匹配零个或者更多  zero or more  "ab*" 匹配字符串a和0个或者更多的b组成的字符串("a" "ab" "abb" "abbbbbb" etc) + 匹配一个或者更多  one or more "ab+" 匹配字符串a和一个或者更多b组成的字符串("ab"...
分类:Web程序   时间:2014-08-21 17:18:24    阅读次数:212
UTF-8 AND UTF-8 without BOM(遇到了这个问题 郁闷了会儿)
两者的区别:Unicode规范中有一个BOM的概念。BOM——Byte Order Mark,就是字节序标记。在这里找到一段关于BOM的说明:在UCS 编码中有一个叫做"ZERO WIDTH NO-BREAK SPACE"的字符,它的编码是FEFF。而FFFE在UCS中是不存在的字符,所以不应该出现...
分类:其他好文   时间:2014-08-21 16:41:14    阅读次数:177
SQL函数
1.ASCII 返回与指定的字符对应的十进制数; SQL> select ascii('A') A,ascii('a') a,ascii('0') zero,ascii(' ') space from dual; A A ZERO SPACE --------- --------- ----...
分类:数据库   时间:2014-08-21 11:17:53    阅读次数:242
JavaScript中值的真真假假(true and false)
值为flase的有:false0 "" //空串nullundefinedNaN 除了以上的之外的都是ture,包括"0"(zero in quotes), "false"(false in quotes) , empty functions, [](空数组), and {}(empty obje....
分类:编程语言   时间:2014-08-19 23:45:35    阅读次数:258
实例:如何使用 Netty 下载文件
本实例主要参考的是官网的examples:点击这里 使用场景:客户端向Netty请求一个文件,Netty服务端下载指定位置文件到客户端。 本实例使用的是Http协议,当然,可以通过简单的修改即可换成TCP协议。 需要注意本实例的关键点是,为了更高效的传输大数据,实例中用到了ChunkedWriteHandler编码器,它提供了以zero-memory-copy方式写文件。 第一步:先写一个...
分类:Web程序   时间:2014-08-19 12:55:04    阅读次数:387
题目594-还是A+B-nyoj20140816
#include #include int zhuanhuan(char str[20]){ if(strcmp(str,"zero")==0) return 0; if(strcmp(str,"one")==0) return 1; if(strcmp(str,"two")==0) ret...
分类:其他好文   时间:2014-08-16 16:25:50    阅读次数:244
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!