码迷,mamicode.com
首页 >  
搜索关键字:cap    ( 3348个结果
WM_CAP_DRIVER_CONNECT
WM_CAP_DRIVER_CONNECT//ActiveX ---->OnCreatem_pit.Create(IDD_CAM_DIALOG,this);CRect rc;this->GetClientRect(&rc);m_pit.m_cam.MoveWindow(&rc);m_pit.Show...
分类:其他好文   时间:2014-05-23 12:09:20    阅读次数:570
泛型定容栈
import java.util.*; //泛型定容栈 //泛型:类型参数化,便于处理不同类型的数据 public class FixedCapacityStack { private Item[] a; private int N; public FixedCapacityStack(int cap){ // java中不允许直接创建泛型数组,此处用类型转换来实现 // 这样写...
分类:其他好文   时间:2014-05-11 15:05:07    阅读次数:233
定容字符串栈
import java.util.Scanner; public class FixedCapacityStackOfStrings { private String[] a; private int N; public FixedCapacityStackOfStrings(int cap){ a=new String[cap]; } public boolean isEmpty...
分类:其他好文   时间:2014-05-11 14:09:33    阅读次数:251
关于直和分解的专题讨论
$\bf命题:$设$A \in {M_n}\left( F \right)$,则下列命题等价$(1)$${F^n}{\rm{ = }}N\left( A \right) \oplus R\left( A \right)$ $(2)$$N\left( A \right) \cap R\left( A ...
分类:其他好文   时间:2014-05-07 17:59:49    阅读次数:244
网络流模版
递归版 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
最大流之dinic
先用bfs预处理出层次图,然后在层次图上用dfs找增广路径,理论复杂度O(n*n*m)const int INF=0xfffffff ;struct node{ int s,t,cap,nxt ;}e[200005] ;int m,n,head[10005],level[10005],cnt ...
分类:其他好文   时间:2014-05-01 20:05:16    阅读次数:379
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
最小费用最大流
每边有一个权值,要求得到最大流并且使得权值和最小把EK算法中的bfs改成spfa,spfa需要注意的是进行松弛的边容量不能为0const int INF=0xfffffff ;struct node{ int s,t,cap,cost,nxt ;}e[200005] ;int sumflow ...
分类:其他好文   时间:2014-04-27 21:45:47    阅读次数:549
3348条   上一页 1 ... 333 334 335
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!