一、准备工作:(1)VMare Workstation 10(2)Ubuntu12.04 64bit(3)JDK1.6 (4)Android 4.4 源码(PS: 忘记下载的地方了)(5)安装好ubuntu12.04之后,在update source manager中设置一下软件源,选择selece...
分类:
移动开发 时间:
2014-08-07 17:59:10
阅读次数:
285
//A组n人 B组m人
//最多有多少人匹配 每人只有匹配一次
# include
# include
# include
using namespace std;
int n,m,k;
int pp[1100][1100],map[1100],vis[1100];
int bfs(int x)//二分匹配模板
{
for(int i=1;i<=m;i++)//B组中的人来迎合匹配
{
...
分类:
其他好文 时间:
2014-08-07 13:25:10
阅读次数:
151
Overview of DPMFeatures基于磁盘的数据保护与恢复.使用PowerShell进行命令行脚本的编写.分发DPM代理的企业级部署方式.配合OM的企业级监控.基于磁带的备份及归档解决方案.灾备方案,为运行windows系统的服务器提供了裸机恢复功能.可以将DPM的数据库备份到磁带,也可...
分类:
其他好文 时间:
2014-08-07 13:02:39
阅读次数:
297
http://azure.microsoft.com/en-us/documentation/articles/virtual-machines-provision-sql-server/Provisioning a SQL Server Virtual Machine on AzureThe Az...
分类:
数据库 时间:
2014-08-07 12:59:30
阅读次数:
437
This topic provides guidelines on how to sign up for SQL Server on a Azure virtual machine and how to get started creating SQL Server databases in Mic...
分类:
数据库 时间:
2014-08-07 12:53:30
阅读次数:
406
本文原文连接: http://blog.csdn.net/bluishglc/article/details/7612811 ,转载请注明出处!1.XAXA 是由X/Open组织提出的分布式事务的规范。XA规范主要定义了(全局)事务管理器(Transaction Manager)和(局部)资源管理器...
分类:
其他好文 时间:
2014-08-07 12:25:59
阅读次数:
175
一、LVM简介LVM是 Logical Volume Manager(逻辑卷管理)的简写,它由Heinz Mauelshagen在Linux 2.4内核上实现。LVM将一个或多个硬盘的分区在逻辑上集合,相当于一个大硬盘来使用,当硬盘的空间不够使用的时候,可以继续将其它的硬盘的分区加入其中,这样可以实...
分类:
系统相关 时间:
2014-08-07 12:07:20
阅读次数:
396
ComponentsandwhattheydoMcAfeeVulnerabilityManagerconsistsofcomponentsthatworktogethertomonitoryoursystems.Enterprisemanager–UsesMicrosoftInternetInformationServices(IIS)toprovideauthorizeduserswithaccesstoMcAfeeVulnerabilityManagerthroughtheirwebbrowsers...
分类:
其他好文 时间:
2014-08-07 07:23:40
阅读次数:
233
Intel® Advanced Vector Extensions (Intel® AVX) is a set of instructions for doing Single Instruction Multiple Data (SIMD) operations on Intel® architecture CPUs. These instructions extend previous SIM...
分类:
其他好文 时间:
2014-08-07 00:51:07
阅读次数:
995
POJ 2455 Secret Milking Machine(搜索-二分,网络流-最大流)
题目大意:
FJ有N块地,这些地之间有P条双向路,每条路的都有固定的长度l。现在要你找出从第1块地到第n块地的T条不同路径,每条路径上的路不能与先前的路径重复,问这些路径中的最长路的最小是多少。
解题思路:
二分+网络流。...
分类:
其他好文 时间:
2014-08-06 23:09:52
阅读次数:
319