码迷,mamicode.com
首页 >  
搜索关键字:edges    ( 333个结果
hust 1013 Grid
题目描述There is a grid size of 1*N. The spanning tree of the grid connects all the vertices of the grid only with the edges of the grid, and every vertex...
分类:其他好文   时间:2014-05-10 19:00:03    阅读次数:337
网络流模版
递归版 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
opencv 摄像头
VideoCapture cap(0); if(!cap.isOpened()) return -1; Mat frame, edges; namedWindow("edges",1); for(;;) { cap >> frame...
分类:其他好文   时间:2014-05-01 06:28:49    阅读次数:333
333条   上一页 1 ... 32 33 34
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!