The most precious thingis life.Lifefor each person only once.Therefore,people's life should be spent this way:when a personlook back at the past,not b...
分类:
其他好文 时间:
2014-11-21 21:48:42
阅读次数:
185
<?php//error_reporting(E_ALL);error_reporting(E_STRICT);date_default_timezone_set(‘America/Toronto‘);//date_default_timezone_set(date_default_timezone_get());include_once(‘../class.phpmailer.php‘);//include("class.smtp.php");//optional,getscalledfromwith..
分类:
Web程序 时间:
2014-11-21 16:32:30
阅读次数:
216
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.
Do not allocate extra space for another array, you must do this in place with...
分类:
其他好文 时间:
2014-11-20 17:07:03
阅读次数:
218
一、dispatch_after功能:延迟一段时间把一项任务提交到队列中执行,返回之后就不能取消常用来在在主队列上延迟执行一项任务函数原型[plain] view plaincopyfuncdispatch_after(_when:dispatch_time_t,_queue:dispatch_qu...
分类:
移动开发 时间:
2014-11-19 20:20:56
阅读次数:
372
Given a sorted linked list, delete all duplicates such that each element appear only once.
For example,
Given 1->1->2, return 1->2.
Given 1->1->2->3->3, return 1->2->3.
思路很简单,由于乖乖的sort好了,就是判断下...
分类:
编程语言 时间:
2014-11-19 18:51:28
阅读次数:
242
Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where
the candidate numbers sums to T.
Each number in C may only be used once in the combina...
分类:
其他好文 时间:
2014-11-18 16:02:52
阅读次数:
247
when we write a program, cpu and memory usages are very important to indicate the stability of the program. Once the cpu usage reached 90%, there are ...
分类:
其他好文 时间:
2014-11-18 00:11:38
阅读次数:
167
在头文件中用这种写法就是为了该头文件被重复包含时不会出现符合重定义的错误。效果等同于 #ifndef __xxx__ #define __xxx__ ... #endif // __xxx__详细如下:#pragma once和ifndef使用异同为了避免同一个文件被include多次1 #ifnd...
分类:
其他好文 时间:
2014-11-17 21:05:58
阅读次数:
194
我们目前对.NET的理解大部分可以归纳为:起初它是Java平台(注意是平台,不要跟Java语言搞混淆)的一个克隆品,后来慢慢演变,有了自己的特性。由于Java平台最显著的特点就是“平台独立性”(或者说不知道谁发明的Write once,Run anywhere这个话)。理论上,你可以写一个程序编译完...
分类:
Web程序 时间:
2014-11-17 13:49:42
阅读次数:
167
include require共同点:包含并运行(包含进来的文件必须加,因为包含时,首先解析文件内容是普通字符串,遇见才会解析。),也可以理解为直接把include和require的代码直接复制到包含处。不同点:include是包含的意思,如果没有找到包含文件,会报一个警告,然后试着往下运行。req...
分类:
其他好文 时间:
2014-11-17 12:16:49
阅读次数:
175