上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 23 下一页
摘要: 在模式匹配之前,正则表达式模式必须先被编译成regex对象,由于正则表达式在执行过程中被多次用于比较,应当先对它进行预编译,从而能提升性能。其实模块函数会对已编译对象进行缓存,所以不是所有是哟过相同正则表达式模式的search()和match()都需要编译。即使这样,你仍然节省了查询缓存,和用相同字符串反复调用函数的性能开销。因此,建议都用re.compile()进行预编译。匹配对象是在matc... 阅读全文
posted @ 2010-11-18 17:48 莫忆往西 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 《Python核心编程》 by Wesley J. Chun Chapter 15 正则表达式推荐读物《精通正则表达式》(Mastering Regular Expressions) by Jeffrey E. F. FriedlPython通过标准库的re模块支持正则表达式Regulation ExpressionSearch:在字符串任意部分中搜索匹配的模式Match:判断一个字符串能否从起... 阅读全文
posted @ 2010-11-18 17:44 莫忆往西 阅读(287) 评论(0) 推荐(0) 编辑
摘要: Parallel and Distributed Programming Using C++(C++并行与分布式编程)Author: Cameron Hughes/ Tracey Hughes创建进程 为运行任何程序,操作系统必须首先创建进程。当一个新进程被创建时,在主进程表中放入了一个新的入口。创建和初始化一个新的PCB,其进程标识部分包含一个唯一的进程id和父进程id。程序计数器被设置成指向... 阅读全文
posted @ 2010-11-12 23:52 莫忆往西 阅读(712) 评论(0) 推荐(0) 编辑
摘要: unicode是16位 65536个字符,中国日本韩国语(CJK)从0x3000~0x9FFFwindows 是32位系统所以他是用4字节来存储一个指针字符串存储在静态内存中,并在末尾加0,若在函数中定义数组来存储字符串则鼻血定义为一个static变量 static char str[]="Hello!";C中的宽字符:wchar_t 16bit 在WCHAR.H中定义为 typedef uns... 阅读全文
posted @ 2010-10-24 05:54 莫忆往西 阅读(233) 评论(0) 推荐(0) 编辑
摘要: Hello World! 我可以被删除! 在我上下添加一个元素吧! 本文使用Blog_Backup未注册版本导出,请到soft.pt42.com注册。 阅读全文
posted @ 2010-10-06 18:21 莫忆往西 阅读(117) 评论(0) 推荐(0) 编辑
摘要: Another work implements a servlet to handle user's request. Recently I change my phone No. for some reason. I want to make a check that if a person is my classmates, he could get my new phone No. The... 阅读全文
posted @ 2010-10-06 17:35 莫忆往西 阅读(204) 评论(0) 推荐(0) 编辑
摘要: (This content is also available at: here)A mind struck me one night before I was going to sleep. It is from the movie named “The Curious Case of Benjamin Button”. In order to seeking his dead son, a ... 阅读全文
posted @ 2010-10-06 17:33 莫忆往西 阅读(182) 评论(0) 推荐(0) 编辑
摘要: A mind struck me one night before I was going to sleep. It is from the movie named “The Curious Case of Benjamin Button”. In order to seeking his dead son, a man made a clock which is anticlockwise. Although time never comes back, I want to make one too. Everyone has something that he wants to get i 阅读全文
posted @ 2010-10-06 09:29 莫忆往西 阅读(156) 评论(0) 推荐(0) 编辑
摘要: /************************************************************************//* Programming Pearls Chapter 8 /* Algorithm 4: vector scan/* 变量maxendinghere存储的实际是以i结尾的且连续的一个向量的最大和值。/* 至于那个赋值表达式maxendinghe... 阅读全文
posted @ 2010-09-29 03:02 莫忆往西 阅读(122) 评论(0) 推荐(0) 编辑
摘要: /* Copyright (C) 1999 Lucent Technologies *//* From 'Programming Pearls' by Jon Bentley *//* http://www.cs.bell-labs.com/cm/cs/pearls/ *//* search.c -- test and time binary and sequential search Se... 阅读全文
posted @ 2010-09-27 19:29 莫忆往西 阅读(95) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 23 下一页