cc.Director:getInstance():getScheduler(): scheduleScriptFunc( function() print("dongshen") end ...
分类:
其他好文 时间:
2015-05-12 00:03:42
阅读次数:
130
题目大意:给你一张无向图,点数为N(N<=100)N(N<=100),边数为M(M<=10000)M(M<=10000),起点为SS,终点为一个集合EndEnd,且|End|=E|End|=E,然后对于每条边,有55个参数,Ai,Bi,Ti,Ri,PiA_i,B_i,T_i,R_i,P_i,分别表示边ii连在Ai,BiA_i,B_i间,假设你到边ii的一端的时候已经走过的距离为DD,那么你到达另一端...
分类:
其他好文 时间:
2015-05-11 21:55:06
阅读次数:
214
Problem:
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.
If the number of nodes is not a multiple of k then left-out nodes in the end should r...
分类:
编程语言 时间:
2015-05-11 20:07:26
阅读次数:
145
UserName:William
===== LICENSE BEGIN =====
45550-12042010
00001SzFN0n1bPII7FnAxnt0DDOPJA
INauvJkeVJBuE5bqLEznccE4tet6tr
RiyoMxDK8oDY93tx!ipPyGmqYYeWxS
===== LICENSE END =====
UserName:Mi...
分类:
Web程序 时间:
2015-05-11 20:05:47
阅读次数:
150
1 @interface ViewController () 2 @property(nonatomic,copy)NSString *action; 3 @property(nonatomic,copy)NSString *rule; 4 @end 5 6 @implementation Vi.....
分类:
其他好文 时间:
2015-05-11 20:00:53
阅读次数:
86
查找字符串中最长子串,例如“I love OC”最长子串为“love” 1 void findMaxLengthSubstr1(char *src) 2 { 3 char *start = src; 4 char *end = src; 5 unsigned int maxL...
分类:
其他好文 时间:
2015-05-11 17:36:39
阅读次数:
127
DescriptionGiven set of line segments [Li, Ri] with integer coordinates of their end points. Your task is to find the minimal subset of the given set ...
分类:
其他好文 时间:
2015-05-11 17:28:27
阅读次数:
113
1、Lerp 线性移动 float?startTime?=?1f;//动画持续的时间为1秒
//start开始状态
//end结束状态
//startTime为持续的时间
float?current?=?Mathf.Lerp/LerpAngle(start,?end,?Time.time?-?startTime) ...
分类:
编程语言 时间:
2015-05-11 11:06:46
阅读次数:
307
Test-Connection, 之所以不采用这种方法, 是因为该命令对于丢包返回系统报错, 无法被抓取.$end = [datetime]"2015年4月27日 20:32:20"$start = Get-Date$count = [math]::Round(($end - $start).Tot...
分类:
其他好文 时间:
2015-05-11 10:23:44
阅读次数:
142
在Linux系统上,程序被载入内存时,内核为用户进程地址空间建立了代码段、数据段和堆栈段,在数据段与堆栈段之间的空闲区域用于动态内存分配。内核数据结构mm_struct中的成员变量start_code和end_code是进程代码段的起始和终止地址,start_data和end_data是进程数据段的起始和..
分类:
系统相关 时间:
2015-05-11 06:37:40
阅读次数:
253