码迷,mamicode.com
首页 >  
搜索关键字:zero clipboard    ( 2343个结果
3Sum--leetcode
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) must be in...
分类:其他好文   时间:2014-12-04 12:08:48    阅读次数:125
3Sum
Given an arraySofnintegers, are there elementsa,b,cinSsuch thata+b+c= 0? Find all unique triplets in the array which gives the sum of zero.Note:Elemen...
分类:其他好文   时间:2014-12-04 00:38:06    阅读次数:215
Leetcode: Regular Expression Matching
Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The...
分类:其他好文   时间:2014-12-03 23:02:50    阅读次数:257
Regular Expression Matching
Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The...
分类:其他好文   时间:2014-12-03 22:48:41    阅读次数:149
linux 操作swap分区
Swap是Linux下的交换分区,类似Windows的虚拟内存,当物理内存不足时,系统可把一些内存中不常用到的程序放入Swap,解决物理内存不足的情况。若系统安装时开辟的Swap空间太小,可通过手动创建Swap文件。一、创建文件dd if=/dev/zero of=kwxgd bs=1024 cou...
分类:系统相关   时间:2014-12-03 15:41:08    阅读次数:264
CMake的应用(在vision studio2008中去掉 ALL_BUILD 和 ZERO_CHECK)
from http://blog.csdn.net/jtop0/article/details/6167432一般由CMake是 跨平台软件开发和维护过程的工程构建工具。“在每个系统构建你的工程,而无须关心创建可执行文件和动态库的具体方法”。 CMake 相对于其他类似工具(shell脚本、Make...
分类:其他好文   时间:2014-12-02 20:46:38    阅读次数:181
Regular Expression Matching
Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The...
分类:其他好文   时间:2014-12-02 14:59:27    阅读次数:184
leetcode. 3sum
Given an arraySofnintegers, are there elementsa,b,cinSsuch thata+b+c= 0? Find all unique triplets in the array which gives the sum of zero.Note:Elemen...
分类:其他好文   时间:2014-12-01 22:17:26    阅读次数:237
C++标准程序库读书笔记-第二章新的语言特性
1.基本类型的显式初始化 如果采用不含参数、明确的constructor(构造函数)调用语法,基本型别会被初始化为零: int i1; //undefined value int i2 = int(); //initialized with zero 这个特性可以确保我们在撰写template程序代...
分类:编程语言   时间:2014-11-30 06:09:52    阅读次数:164
select()函数以及FD_ZERO、FD_SET、FD_CLR、FD_ISSET
select函数用于在非阻塞中,当一个套接字或一组套接字有信号时通知你,系统提供select函数来实现多路复用输入/输出模型,原型:int select(int maxfd,fd_set *rdset,fd_set *wrset,fd_set *exset,struct timeval *timeo...
分类:其他好文   时间:2014-11-29 10:16:34    阅读次数:194
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!