Recovery time is the minimum length of time an asynchronous control signal, for example, and preset, must be stable before the next active clock edge....
分类:
其他好文 时间:
2014-10-20 14:56:25
阅读次数:
298
#include
#include
using namespace std;
#define E 10000
#define V 100
struct Edge{
int to_node;
int edge_val;
int next_edge;
Edge(){}
Edge( int to, int val, int next ){...
分类:
其他好文 时间:
2014-10-20 11:46:20
阅读次数:
226
OpenMP教程:https://computing.llnl.gov/tutorials/openMP/IBM蓝色基因编译器信息中心:http://pic.dhe.ibm.com/infocenter/compbg/v121v141/index.jsp持续更新中……
分类:
Web程序 时间:
2014-10-18 09:49:10
阅读次数:
168
树的判定
时间限制:1000 ms | 内存限制:65535 KB
难度:4
描述
A tree is a well-known data structure that is either empty (null, void, nothing) or is a set of one or more nodes connected by directed edge...
分类:
其他好文 时间:
2014-10-17 09:23:24
阅读次数:
172
题目链接
题意: 判断城市是否全部能相通
思路:判断一张有向图是否强连通
代码:
#include
#include
#include
#include
using namespace std;
const int MAXN = 2005;
const int MAXM = MAXN * MAXN;
struct Edge{
int to, n...
分类:
其他好文 时间:
2014-10-16 20:30:03
阅读次数:
169
ATL(Active TEmplate Library)活动模板库RPC(Remote Procedure Call Protocol)远程过程调用协议DCE(Distributed Computing Environment)分布式计算环境OSF(Open Software Foundation)...
分类:
编程语言 时间:
2014-10-15 18:38:41
阅读次数:
422
一道多次询问的最近公共祖先问题。
#include
#include
#include
#include
#include
using namespace std;
const int MAXN = 40000 + 10;
struct Edge{
int to,cost;
Edge(){};
Edge(int _to,int _cost)
...
分类:
其他好文 时间:
2014-10-13 22:33:37
阅读次数:
208
Android Weekly is afree newsletterthat helps youto stay cutting-edge with your Android Developmenthttp://androidweekly.net/
分类:
移动开发 时间:
2014-10-13 20:31:47
阅读次数:
151
一棵树 开始每个点的权值都为1
2种操作1.将第i个点的权值增加x 2.求u到v这条路上最大的权值
树链剖分基础题
#include
#include
#include
using namespace std;
const int maxn = 100010;
struct edge
{
int v, next;
}e[maxn*2];
int first[maxn], cnt;...
分类:
其他好文 时间:
2014-10-13 17:54:29
阅读次数:
232
之一就是第一章,这是第二章。在开始之前,要对第一章内容说说我理解到的:(1)时序分析是节点对节点的分析。(2)这个latch edge是锁存上一个lunch edge输出的(满足建立关系的)值。(3)建立关系和建立时间余量。(4)保持关系和保持时间余量。特别是使用屁股计数就是实际TQ的分析方法。Ti...
分类:
其他好文 时间:
2014-10-13 17:44:59
阅读次数:
169