码迷,mamicode.com
首页 >  
搜索关键字:cap    ( 3348个结果
Ubuntu 12.04.4 LTS 部署cap
一.系统环境jim@mode:~$cat/etc/issueUbuntu12.04.4LTS\n\ljim@mode:~$uname-raLinuxmode3.11.0-15-generic#25~precise1-UbuntuSMPThuJan3017:39:31UTC2014x86_64x86_64x86_64GNU/Linux二.创建用户jim@mode:~$sudoadduserdeploy[sudo]passwordforjim:perl:warning:Settinglocal..
分类:其他好文   时间:2014-08-15 02:56:37    阅读次数:259
ubuntu下aircrack-ng的wifi破解
首先安装aircrack-ng,apt-get install aircrack-ng。然后打开shell,输入airmon-ng start wlan0。输入airodump-ng mon0。输入airodump-ng -c 1(频道) -w wep.cap --bssid 74:25:8A:7B...
分类:其他好文   时间:2014-08-10 12:45:30    阅读次数:253
Method and apparatus for establishing IEEE 1588 clock synchronization across a network element comprising first and second cooperating smart interface converters wrapping the network element
Apparatus for making legacy network elements transparent to IEEE 1588 Precision Time Protocol operation. Network elements are wrapped by device(s) cap...
分类:移动开发   时间:2014-08-04 21:05:07    阅读次数:464
CAP原理和最终一致性(Eventually Consistency)
在足球比赛里,一个球员在一场比赛中进三个球,称之为帽子戏法(Hat-trick)。在分布式数据系统中,也有一个帽子原理(CAP Theorem),不过此帽子非彼帽子。CAP原理中,有三个要素: 一致性(Consistency) 可用性(Avai...
分类:其他好文   时间:2014-07-30 15:06:44    阅读次数:224
网络流之费用流问题
费用流即最小费用最大流先贴上粉书上的模板:struct Edge{ int from,to,cap,flow,cost; Edge(int u,int v,int c,int f,int w): from(u),to(v),cap(c),flow(f),co...
分类:其他好文   时间:2014-07-30 00:27:02    阅读次数:289
网络最大流增广路模板(EK & Dinic)
EK算法: int fir[maxn]; int u[maxm],v[maxm],cap[maxm],flow[maxm],nex[maxm]; int e_max; int p[maxn],q[maxn],d[maxn]; void add_edge(int _u,int _v,int _w) { int e; e=e_max++; u[e]=_u;v[e]=_v;c...
分类:其他好文   时间:2014-07-29 14:20:08    阅读次数:232
hdu 2516 最小费用最大流
原来这个代码超时 #include #include #include using namespace std; #define N 200 #define inf 0x3fffffff int cap[N][N]; int fee[N][N]; int s,t,sum,pre[N]; int spfa() { queueq; int dis[N],visit[N],u,i; memset(p...
分类:其他好文   时间:2014-07-29 13:03:47    阅读次数:317
顾沛《抽象代数》1.5"循环群"习题解答
习题:5.设$G$为循环群,$N$,那么不难证明$$G/N=.$$6.设$a,b$分别为群$G$中的$m,n$阶元素,且满足$$ab=ba,\cap=\{e\}$$证明:$ab$的阶为$[m,n]$.证明 设$ab$的阶为$d$,由于$$(ab)^{[m,n]}=a^{[m,n]}b^{[m,n]....
分类:其他好文   时间:2014-07-19 20:28:32    阅读次数:528
OpenSource.SerializationLibrary
1. Cap'n Protoprotocol buffer的主要作者之一创建的新项目。其主页描述Cap'n Proto的性能比PB快很多。http://kentonv.github.io/capnproto/index.html2. FlatBufferFlatBuffers is a serial...
分类:其他好文   时间:2014-07-19 00:28:17    阅读次数:291
46、动态存储类
动态存储类 StrVec Class Design StrVec Class Definition class StrVec { public: //构造函数 StrVec():elements(nullptr), first_free(nullptr), cap(nullptr){} //用initializer_list初始化参数列表 StrVe...
分类:其他好文   时间:2014-07-17 10:22:21    阅读次数:286
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!