使用UIScreenEdgePanGestureRecognizer写iOS7侧边栏A
UIScreenEdgePanGestureRecognizer looks for panning (dragging) gestures that
start near an edge of the scre...
分类:
移动开发 时间:
2014-05-17 13:03:19
阅读次数:
412
Cloud computing is a model for enabling ubiquitous,
convenient, on-demand network access to a shared pool of configurable computing
resources (e.g., n...
分类:
其他好文 时间:
2014-05-17 00:47:31
阅读次数:
224
tarjan算法第一题
喷我一脸。。。。把手写栈的类型开成了BOOL,一直在找错。。。
#include
#include
#include
#include
#define maxn 100005
const int MOD=1000000007;
using namespace std;
struct node
{
int to,next;
}edge[maxn...
分类:
其他好文 时间:
2014-05-15 08:18:56
阅读次数:
353
Robert is clipping his fingernails. But the nail clipper is old and the edge of the nail clipper is potholed.
The nail clipper's edge is N millimeters wide. And we use N characters('.' or '*') to rep...
分类:
其他好文 时间:
2014-05-13 15:05:54
阅读次数:
264
关于nios
中的中断,因为要16c550中需要nios的中断环境去测试,所以就用到了中断。硬件:在nios中添加硬件PIO,但是要使能中断功能。如下图所示:系统列化,PIO的连接就不说了。但是要注意两地方:edge
type, IRQ type。接下来就是软件设计:使能相应的中断,IOWR_ALT...
分类:
移动开发 时间:
2014-05-11 14:04:24
阅读次数:
401
Thinkpad Edge E440 Ubuntu14.04 无线网卡驱动 解决...
分类:
其他好文 时间:
2014-05-09 21:14:45
阅读次数:
248
Power of CryptographyDescriptionCurrent work in
cryptography involves (among other things) large prime numbers and computing
powers of numbers among t...
分类:
其他好文 时间:
2014-05-09 03:43:36
阅读次数:
260
递归版
struct Edge
{
int from, to, cap, flow;
Edge(){}
Edge(int from, int to, int cap, int flow) : from(from), to(to), cap(cap), flow(flow){}
};
int n, m, s, t;
vector edges;
vector G[maxn];
bool v...
分类:
其他好文 时间:
2014-05-06 23:39:25
阅读次数:
351
AWS -Amazon Web Services(AWS) - Cloud Computing
ServicesEC2 -Amazon Elastic Compute Cloud (EC2)Create First Application in
Elastic Beanstalk1. Login A...
分类:
其他好文 时间:
2014-05-06 13:56:32
阅读次数:
428
#include
#include
#include
#include
#include
using namespace std;
#define N 20020
struct node{
int from, to, dou, nex;
}edge[N];
int head[N], edgenum;
void add(int u, int v,int dou){
node E={u,v,dou...
分类:
其他好文 时间:
2014-05-03 15:25:32
阅读次数:
340