UIButton中的**EdgeInsets是做什么用的?UIEdgeInsetsMakeCreates
an edge inset for a button or view.An inset is a margin around the drawing
rectangle where each s...
分类:
其他好文 时间:
2014-05-27 01:52:22
阅读次数:
297
这两天学习了网络流,下面是ISAP算法模板:
const int inf = 0x3fffffff;
template
struct Isap
{
int top;
int d[N], pre[N], cur[N], gap[N];
struct Vertex{
int head;
} V[N];
struct Edge{...
分类:
其他好文 时间:
2014-05-26 04:10:16
阅读次数:
252
寻找图中最小连通的路径,图如下:
算法步骤:
1. Sort all the edges in non-decreasing order of their weight.
2. Pick the smallest edge. Check if it forms a cycle with the spanning tree
formed so far. If cycle is n...
分类:
其他好文 时间:
2014-05-25 07:35:59
阅读次数:
301
http://poj.org/problem?id=3013
题意:
Because of a technical difficulty, price of an edge will be (sum of weights of all descendant nodes) × (unit price of the edge).这句话一直没看懂。后面还以为是最小生成树。
正确...
分类:
其他好文 时间:
2014-05-24 20:27:13
阅读次数:
266
Definition - What doesResource
Poolingmean?Resource pooling is an IT term used in cloud computing environments
to describe a situation in which provid...
分类:
其他好文 时间:
2014-05-23 04:59:01
阅读次数:
421
克鲁斯卡尔
struct edge
{
int u, v, w;
}e[maxn];
int f[110];
bool cmp(edge a, edge b)
{
return a.w < b.w;
}
int find(int x)
{
if(x != f[x])
return f[x] = find(f[x]);
return f[x];
}
int MST()
{
int...
分类:
其他好文 时间:
2014-05-23 02:15:51
阅读次数:
267
比如:其中的param属性
相当于value=""还要注意:如果javabean里面的属性(比如说edge属性)对应的类型是int,double或者其他类型,又因为request.getParameter("num")永远返回的是string类型
,那么param会自动类型转换, 不需手动转换.
分类:
Web程序 时间:
2014-05-21 21:46:09
阅读次数:
288
最近上班,突然想测试下微软最新的lync2013系统,于是说做就做,在虚机下准备了下环境,此次测试是前后端的架构,暂时未测试Edge的架构,测试的架构如下图本次测试环境DC为windowsserver2012系统的域架构后端数据库安装的SQL2008R2,采用的是默认实例Lync2013的前端是安装的Win..
分类:
其他好文 时间:
2014-05-21 00:23:25
阅读次数:
342
1、如果启动沿(launch)和锁存沿(latch)是同一时钟域则,latch比launch晚一个时钟周期。2、数据到达时间3、时钟到达时间。如果启动沿(launch
edge)和锁存沿(latch edge)是同一时钟域则,latch edge比launch edge晚一个时钟周期。如果在不同的时...
分类:
其他好文 时间:
2014-05-20 10:43:31
阅读次数:
319
最短路算法主要有以下几个: 一 Dijkstra 二 Bellman-Ford 三 SPFA
四 ASP 五 Floyd-Warshall 首先约定一下图的表示: struct Edge{ int from,to,wt; }; vectorG[N];
vectorG[N]; ------------...
分类:
其他好文 时间:
2014-05-20 01:25:04
阅读次数:
350