在 iPhone 或 iPad 的开发中,除了用 touchesBegan / touchesMoved / touchesEnded 这组方法来控制使用者的手指触控外,也可以用 UIGestureRecognizer 的衍生类別来进行判断。用 UIGestureRecognizer 的好处在于有现成的手势,开发者不用自己计算手指移动轨迹。UIGestureRecognizer的衍生类別有以下几种...
分类:
移动开发 时间:
2014-11-21 23:22:41
阅读次数:
313
1.系统默认的颜色设置
[cpp] viewplaincopy
//无色
cell.selectionStyle = UITableViewCellSelectionStyleNone;
//蓝色
cell.selectionStyle = UITableViewCellSelectionStyleBlue;
//灰色 ...
分类:
其他好文 时间:
2014-11-21 23:22:52
阅读次数:
212
退回输入键盘
- (BOOL)textFieldShouldReturn:(id)textField{
[textField resignFirstResponder];
}
CGRect
CGRect frame = CGRectMake (origin.x,origin.y, size.width, size.height);矩形
NSStringFrom...
分类:
移动开发 时间:
2014-11-21 23:24:03
阅读次数:
476
在Hadoop中,启动作业运行的方式有很多,可以用命令行格式把打包好后的作业提交还可以,用Hadoop的插件进行应用开发,在这么多的方式中,都会必经过一个流程,作业会以JobInProgress的形式提交到JobTracker中。什么叫JobTracker呢,也许有些人了解Hadoop只知道他的MapReduce计算模型,那个过程只是其中的Task执行的一个具体过程,比较微观上的流程,而JobTr...
分类:
其他好文 时间:
2014-11-21 23:24:09
阅读次数:
302
擅长排列的小明 II
时间限制:1000 ms | 内存限制:65535 KB
难度:3
描述
小明十分聪明,而且十分擅长排列计算。
有一天小明心血来潮想考考你,他给了你一个正整数n,序列1,2,3,4,5......n满足以下情况的排列:
1、第一个数必须是1
2、相邻两个数之差不大于2
你的任务是给出排列的种数。
输入
多组数据。...
分类:
其他好文 时间:
2014-11-21 23:22:20
阅读次数:
240
Given a graph (V,E) where V is a set of nodes and E is a set of arcs in VxV, and an
ordering on the elements in V, then the bandwidth of a node
v is defined as the maximum distance in the ordering ...
分类:
其他好文 时间:
2014-11-21 23:21:51
阅读次数:
285
题目大意:给定一个矩阵,多次求一个子矩阵中的第k小
正解:CDQ分治 不会
二维莫队? 不会
于是果断分块大法好(又是
我们将这n*n个数排序 分n次插入 每次插入n个
每次插入后 去链表上处理尚未出解的询问(我懒得写链表写了并查集) 如果当前询问的子矩阵内已经插入大于等于k个数 那么答案一定在当次插入的n个数中 暴力查找即可
时间复杂度O(n^3+nq) 好卡……
#inclu...
分类:
其他好文 时间:
2014-11-21 23:23:37
阅读次数:
304
Not so Mobile
Before being an ubiquous communications gadget, a
mobile was just a structure made of strings and wires suspending colourfull things. This kind of mobile is usually found h...
分类:
其他好文 时间:
2014-11-21 23:21:20
阅读次数:
213
dp水题...
分类:
其他好文 时间:
2014-11-21 23:21:16
阅读次数:
218
Problem F: Fabled Rooks
We would like to place
n rooks, 1 ≤ n ≤ 5000, on a n×n board subject to the following restrictions
The i-th rook can only be placed within the rectangle given by its l...
分类:
其他好文 时间:
2014-11-21 23:23:27
阅读次数:
308
Description
Secret agent Maria was sent to Algorithms City to carry out an especially dangerous mission. After several thrilling events we find her in the first station of Algorithms City Metro, ...
分类:
其他好文 时间:
2014-11-21 23:21:05
阅读次数:
499
man: Manual 意思是手册,可以用这个命令查询其他命令的用法。
pwd:Print working directory 意思是密码。
su:Swith user 切换用户,切换到root用户
cd:Change directory 切换目录
ls:List files 列出目录下的文件
ps:Process Status 进程状态
mkdi...
分类:
系统相关 时间:
2014-11-21 23:21:26
阅读次数:
328
Knight Moves
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 11794
Accepted: 6646
Description
A friend of you is doing research on the Traveling Knight P...
分类:
其他好文 时间:
2014-11-21 23:23:02
阅读次数:
260
在一个无向连通图中,如果有一个顶点集合,删除这个顶点集合,以及这个集合中所有顶点相关联的边以后,原图变成多个连通块,就称这个点集为割点集合。
求割点与桥的算法是R.Tarjan发明的,本文用邻接矩阵存储图的信息,实现了递归和非递归两种算法。 感觉非递归算法或许有更好的表达,但一时想不出来,请大牛指点,谢谢!...
分类:
其他好文 时间:
2014-11-21 23:22:51
阅读次数:
408
以下代码是THREE.JS 源码文件中Math/Triangle.js文件的注释.
barycoordFromPoint方法通过计算返回参数a,b,c所组成的三角形所在的平面上任意点(参数point)所表示三角形顶点的加权平均值,这个权值就是重心坐标.
NOTE:重心坐标的定义
三角形所在平面的任意点都能表示为顶点的加权平均值,这个权就叫做重心坐标。从重心坐标到标准坐标的转换为(无论2D或3D,连4D、5D也是这样):
(b1,b2,b3) b1v1+b2v2+b3v3
式中:b1,b2,b3...
分类:
Web程序 时间:
2014-11-21 23:21:51
阅读次数:
306
今天在用这个导航栏的时候发现一个问题,UIPanGestureRecognizer是任何滑动手势都会辨别,它不像UISwipeGestureRecognizer一样有方向.这样在有些情况下会产生问题。...
分类:
移动开发 时间:
2014-11-21 23:21:22
阅读次数:
370
一,什么是Linq
1,...
分类:
其他好文 时间:
2014-11-21 23:21:02
阅读次数:
212