一个基于c#的点对点局域网文件传输小案例,运行效果截图 //界面窗体 using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;us ...
分类:
Windows程序 时间:
2016-04-12 23:55:07
阅读次数:
1087
二分图最大顺序匹配。 拿题目编号和锦囊编号建二分图,跑匈牙利算法。 #include #include #include using namespace std; const int maxn = 2000 + 10; const int maxm = 4000 + 10; int n,m,e; i... ...
分类:
其他好文 时间:
2016-04-12 22:13:33
阅读次数:
153
#include <iostream>#include <cstdio>#include <cmath>#include <stack>#include <string> using namespace std; int main(){ char command[16]; char url[71]; ...
分类:
其他好文 时间:
2016-04-12 14:15:13
阅读次数:
124
题目大意:n个点,求第k远的点对的距离 KD树裸题 注意要用堆维护第k远 #include<bits/stdc++.h> #define ll unsigned long long #define maxn 100010 using namespace std; inline int read(){ ...
分类:
其他好文 时间:
2016-04-12 12:58:25
阅读次数:
403
本讲基本要求 * 掌握:命名空间的作用及定义;如何使用命名空间。 * 了解:使用早期的函数库 重点、难点 ◆命名空间的作用及定义;如何使用命名空间。 在学习本书前面各章时,读者已经多次看到在程序中用了以下语句: using namespace std; 这就是使用了命名空间std。在本讲中将对它作较 ...
分类:
编程语言 时间:
2016-04-12 12:29:10
阅读次数:
198
Hi I have the following JSON returned in a variable called data. THIS IS THE JSON THAT GETS RETURNED... [ {"Id": 10004, "PageName": "club"}, {"Id": 10 ...
分类:
Web程序 时间:
2016-04-12 10:03:41
阅读次数:
189
public static List ToListReadUncommitted(this IQueryable query) { using (var scope = new TransactionScope(TransactionScopeOption.Required, new Transac... ...
分类:
其他好文 时间:
2016-04-12 00:24:39
阅读次数:
455
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Drawing; 5 using System.Linq; 6 using System.Text; 7 ...
分类:
数据库 时间:
2016-04-12 00:19:40
阅读次数:
341
1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <algorithm> 5 #include <queue> 6 7 using namespace std; 8 struct node{ 9 int ...
分类:
其他好文 时间:
2016-04-11 22:28:13
阅读次数:
237
二分分值最大值lid,把所有的分值小于lid的边加入,如果图联通,证明可以。 #include #include #include using namespace std; const int maxn = 100000 + 10; const int maxm = 200000 + 10; int... ...
分类:
其他好文 时间:
2016-04-11 22:17:35
阅读次数:
117