zoj 3673 1 /** 2 6700417 3 **/ 4 #include 5
#include 6 #include 7 #include 8 #include 9 using namespace std;10 11 typedef
unsigned long long LL;12 13 ...
分类:
其他好文 时间:
2014-05-13 18:07:32
阅读次数:
234
http://virtualenv.readthedocs.org/en/latest/
分类:
编程语言 时间:
2014-05-13 18:00:19
阅读次数:
241
一、Python的标准类型(1)bool型>>>
bool("")False>>> bool(None)False>>>
bool(False)False(2)数值型Python的数值型数据包含两类:int和float型数据,需要注意的是还有一个complex的类型,也就是复数类型>>>
a = c...
分类:
Web程序 时间:
2014-05-13 17:49:08
阅读次数:
436
收获:在运行程序的时候,错误出现。主要是map没有进行判断,是否为空,如果为空,则创建一个对象new
HashMap();然后就注意细节,String name=request.getParameter("name"); String
pass=request.getParameter("pa...
分类:
编程语言 时间:
2014-05-13 17:33:42
阅读次数:
276
excel是很常用的表格工具。不过,对程序员来说,这可不是件好事件。因为excel的数据既不像txt那样,随意一种语言、脚本,写个函数就能把数据读出来分析。也不像JSON这种开源的数据格式,有N多的开源库来读取。就算没有,知道数据格式,自己写个库也自己用不至于太难。
要想读取excel的数据,...
分类:
编程语言 时间:
2014-05-13 17:31:43
阅读次数:
332
1 class CMyString 2 { 3 friend std::ostream&
operatorm_pData = 0; 6 } 7 else 8 { 9 this->m_pData ...
分类:
编程语言 时间:
2014-05-13 17:30:43
阅读次数:
316
一、JS中的数据类型 1.数值型(Number):包括整数、浮点数。 2.布尔型(Boolean)
3.字符串型(String) 4.对象(Object) 5.数组(Array) 6.空值(Null)
7.未定义(Undefined)二、判断一个变量的数据类型1.数值型(...
分类:
编程语言 时间:
2014-05-13 17:24:30
阅读次数:
360
字符串 string block ---- copyFoundtion对象用 (array,
NSObject) ---- StrongUI控件 代理 ---- weak基本数据类型 ---- ...
分类:
其他好文 时间:
2014-05-13 17:20:23
阅读次数:
207
【整】char、varchar、nchar、nvarchar的区别对于程序中的string型字段,SQLServer中有char、varchar、nchar、nvarchar四种类型来对应(暂时不考虑text和ntext),开建立数据库中,对这四种类型往往比较模糊,这里做一下对比。定长或变长
所谓....
分类:
其他好文 时间:
2014-05-13 16:53:45
阅读次数:
282
一。start 和end
方法下面是一个对单词"cat"出现在输入字符串中出现次数进行计数的例子:public class RegexMatches{ private static
final String REGEX = "\\bcat\\b"; //边界 private stat...
分类:
编程语言 时间:
2014-05-13 11:02:58
阅读次数:
312