码迷,mamicode.com
首页 > 其他好文
几个可以用到的正则表达式
package lbi.flow.util;import net.sf.json.regexp.RegexpMatcher;public class RegexpUtils { /** * 匹配7c:d1:c3:73:d6:72形式mac * * @return ...
分类:其他好文   时间:2014-05-21 03:13:44    阅读次数:288
LeetCode:ZigZag Conversion
题目链接 The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed ...
分类:其他好文   时间:2014-05-22 01:55:19    阅读次数:320
组合组件
package com.example.ceshi;import android.app.Activity;import android.content.Context;import android.opengl.Visibility;import android.util.AttributeSet...
分类:其他好文   时间:2014-05-22 01:55:56    阅读次数:292
自定义组件
package com.example.ceshi;import android.content.Context;import android.graphics.Canvas;import android.graphics.Color;import android.graphics.Paint;im...
分类:其他好文   时间:2014-05-22 01:59:09    阅读次数:288
《30岁前的每一天》—读书总结
10000小时法则——任何一个领域,你要想出类拔萃,至少要投入超过10000小时以上。
分类:其他好文   时间:2014-05-22 02:01:38    阅读次数:171
11.求二元查找树的镜像
Mirror a binary search tree.
分类:其他好文   时间:2014-05-22 02:02:55    阅读次数:244
计算机科学及编程导论:第一课
目标 1.学会用计算思维编写程序 think like a computer scientist 2.读懂别人的程序 3.了解计算的基本能力和局限 4.把科学问题转换成计算问题什么是计算? 知识分为陈述性知识(是什么)和过程性知识(如何做,又称指令性知识,对推导过程的描述,如何判别)...
分类:其他好文   时间:2014-05-22 02:03:39    阅读次数:202
cpp_namespace
usingandusing namespacehave validity only in the same block in which they are stated or in the entire source code file if they are used directly in th...
分类:其他好文   时间:2014-05-22 02:08:48    阅读次数:268
awk
AWK程序是由一系列模式--动作对组成的,写做pattern { action }其中pattern表示AWK在数据中查找的内容,而action是在找到匹配内容时所执行的一系列命令。输入行被分成了一些记录:记录默认由换行符分割,因此输入会按照行进行分割。程序使用给定的条件一个个的测试每条记录,并执行...
分类:其他好文   时间:2014-05-22 02:06:54    阅读次数:281
SEOer该怎样做好站内优化
做SEO,站内优化是非常重要的,想要做好站内优化,SEOer必懂以下这5点知识. 一、网站title和description优化 在网站优化要素中,网站title和网站description是关键的两点.他们关乎到搜索引擎的判断,也是搜着引擎网站排名的要点根据.title主要负责网页的主...
分类:其他好文   时间:2014-05-22 02:06:11    阅读次数:259
15.含有指针成员的类的拷贝(copy constructor)
C++ string class copy constructor and assign constructor.
分类:其他好文   时间:2014-05-22 02:10:40    阅读次数:325
页面数据和控件的自动交换机制
阅读目录 数据维护通用流程 数据的加载 数据的修改 添加数据 自动交换机制 数据自动读写 只要使用了数据库,那么管理和维护数据的工作就是不可避免的。应用程序中,对于数据库中数据的管理和维护,有两种情况。一种是与业务逻辑密切相关的数据,往往通过关系-对象映射的方法转换为对象,应用程序的运行就围绕这些对...
分类:其他好文   时间:2014-05-22 02:10:03    阅读次数:280
二维数组与高级指针
1 二维数组 多维数组即数组维数不止1个。例如,可用如下两种方式声明二维数组:1. char Lion[3][5];2. typedef char Animal[5]; Animal Tiger[3]; Lion或Tiger可视为包含3个元素的一维数组,只不过每个元素本身是个包含5个char型...
分类:其他好文   时间:2014-05-22 02:11:24    阅读次数:319
The Shine On The Top Of The Bag Would Indicate
The design of travel bags and promotional gifts are supported appropriately. This means that the authorities believe that many things in addition to d...
分类:其他好文   时间:2014-05-22 02:12:01    阅读次数:324
以boost::function和boost:bind取代虚函数
转自:http://blog.csdn.net/Solstice/archive/2008/10/13/3066268.aspx这是一篇比较情绪化的blog,中心思想是“继承就像一条贼船,上去就下不来了”,而借助boost::function和boost::bind,大多数情况下,你都不用上贼船。b...
分类:其他好文   时间:2014-05-22 02:12:42    阅读次数:287
13.第一个只出现一次的字符
Find first not repeating char in a string.
分类:其他好文   时间:2014-05-22 02:13:26    阅读次数:309
威斯敏斯特教堂的一段碑文
改变,从我做起。
分类:其他好文   时间:2014-05-22 02:14:03    阅读次数:260
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!