Implement regular expression matching with support for '.' and '*'.'.' Matches any single character.'*' Matches zero or more of the preceding element....
分类:
其他好文 时间:
2014-07-12 13:17:10
阅读次数:
248
URL 编码:CFURLCreateStringByAddingPercentEscapes If you have tried to send any information using a GET web request, you would have come cross an annoyin...
分类:
其他好文 时间:
2014-06-28 10:00:37
阅读次数:
219
启动sql server服务时失败,报如下消息:服务器 TCP 提供程序无法在 [ 'any' 1433] 上侦听。TCP 端口已在使用中。TDSSNIClient 初始化失败,出现错误 0x2740,状态代码 0xa。原因: 无法初始化 TCP/IP 侦听器。 通常每个套接字地址(协议/网络地址....
分类:
其他好文 时间:
2014-06-27 21:57:41
阅读次数:
239
Report Trigger1.1 Which report trigger to useAs a general rule, any processing that will affect the data retrieved by the report should be performed i...
分类:
其他好文 时间:
2014-06-27 15:14:32
阅读次数:
214
有没有那么一个时候,特别想知道现在的时间呢。上代码。- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. self.title=@"RootV...
分类:
其他好文 时间:
2014-06-27 13:21:01
阅读次数:
150
This article from :http://www.2cto.com/database/201305/208114.htmlthanks for the author. if there is any programs with copyright please leave message ...
分类:
数据库 时间:
2014-06-26 22:05:51
阅读次数:
364
NSKeyedArchiver是加密形式的保存数据。上代码。- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. self.title=@"N...
分类:
其他好文 时间:
2014-06-26 11:24:49
阅读次数:
161
在oracle中sequence就是所谓的序列号,每次取的时候它会自动增加,一般用在需要按序列号排序的地方。 1、Create Sequence 你首先要有CREATE SEQUENCE或者CREATE ANY SEQUENCE权限, CREATE SEQUENCE emp_sequence ...
分类:
其他好文 时间:
2014-06-25 11:00:02
阅读次数:
264
我们在开发注册界面的时候,最后几个注册条件常常容易被系统弹出的键盘遮挡,如下图:
可以看见,邮箱条件被遮挡掉了,怎么解决呢?我是通过UITextField的代理加计算偏移量:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, ty...
分类:
移动开发 时间:
2014-06-25 07:28:37
阅读次数:
232
【题目】
Given a binary tree, find the maximum path sum.
The path may start and end at any node in the tree.
For example:
Given the below binary tree,
1
/ 2 3
Return 6.
【题意】
给定一棵二叉树,找出其中路径和最大的路径,然会返回最大路径和。
本题中的路径不是从根节点到叶子节点这样的传统的路...
分类:
其他好文 时间:
2014-06-24 20:42:59
阅读次数:
268