码迷,mamicode.com
首页 >  
搜索关键字:low poly    ( 2316个结果
快速排序
#include#defineARRLEN(x)(sizeof(x)/sizeof(int))intpartition(inta[],intlow,inthigh){intpivotkey=a[low];while(low=pivotkey)--high;if(low<high)a[low++]=a...
分类:其他好文   时间:2014-08-19 18:07:15    阅读次数:169
连通分量 poj3352
有重边的话重边就不被包含在双连通里了#include #include using namespace std;const int maxn=1001;vectorG[maxn];int low[maxn],dfn[maxn];bool vis[maxn];int dg[maxn];int dep....
分类:其他好文   时间:2014-08-17 16:44:03    阅读次数:180
hdu 2363
枚举加最短路#include #include #include #include using namespace std;#define N 105#define INF 0x7f7f7f7fstruct Height{ int low,high,dif;}H[N*N];struct Edg...
分类:其他好文   时间:2014-08-14 19:52:29    阅读次数:201
Impublished using a low cost cheap ghd straighteners australia
Impublished using a low cost cheap ghd straighteners australia conventional typical standard traditional in wide quantities of prints at only one reac...
分类:其他好文   时间:2014-08-14 13:39:48    阅读次数:273
How your face shapes your economic chances
Beauty, closely studied, seems nearly indistinguishable from quick math.拥有美貌的人,不管你是经过细致研究还是粗略一看,他都是那么美。Men seem to prefer women with a low waist-to-hi...
分类:其他好文   时间:2014-08-13 21:56:47    阅读次数:294
discuz 中实现从微信抓取消息并发帖
这是我入职公司写的第一个程序,当时并没有太多的接触php,对php也不是很了解进过慢慢的学习完成的,虽然很low但我觉得很有意义! array( "wx_thread" => array("fid" => 36, "author" => "admin", "authorid" => "1", "lastposte...
分类:微信   时间:2014-08-13 18:57:27    阅读次数:625
poj 3352Road Construction(无向双连通分量的分解)
1 /* 2 题意:给定一个连通的无向图G,至少要添加几条边,才能使其变为强连通图(指的是边强联通)。 3 思路:利用tarjan算法找出所有的双联通分量!然后根据low[]值的不同将双联通分量 4 进行缩点,最后图形会变成一棵树!也就是添加至少多少条边使一棵树变成强联通图! ...
分类:其他好文   时间:2014-08-13 12:46:16    阅读次数:368
zabbix应用之low-level discovery监控mysql
当一台服务器上MySQL有多个实例的时候,MySQL占用多个不同端口。利用zabbix的low-leveldiscovery可以轻松监控。思路参考:http://dl528888.blog.51cto.com/2382721/1357713下面我写了一个简单的脚本,用于一键部署mysql监控。一、客户端在被监控端运行此脚本,前提条件已经安装..
分类:数据库   时间:2014-08-13 03:51:45    阅读次数:471
rwkj 1430 二分查找
#includeusing namespace std;int n,k,a[10000];int binsearch(int low,int high){ int i,len,s;while(lowk) low=len+1; else if(s>n>>k) ...
分类:其他好文   时间:2014-08-11 23:59:43    阅读次数:415
最小生成树 prim----------------
/*最小生成树,用Prim算法使用BZ数组*/#include#define INF 200int g[110][110],bz[110],low[110];int min,ans,Q,n,a,b;void prim(){ int i,j,k,x; for (i=1;i<=n;i+...
分类:其他好文   时间:2014-08-11 23:53:13    阅读次数:294
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!