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
先用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
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