码迷,mamicode.com
首页 >  
搜索关键字:Edge computing    ( 2926个结果
并行批处理多个文件 matlab
%初始化matlab并行运行环境 % Initialize Matlab Parallel Computing Environment   CoreNum=2; %设定机器CPU核心数量,我的机器是双核,所以CoreNum=2 if matlabpool('size') matlabpool('open','local',CoreNum); %若尚未启动,则启动并行环境 else...
分类:其他好文   时间:2014-06-15 18:47:22    阅读次数:882
hdu 2489 Minimal Ratio Tree(dfs枚举 + 最小生成树)~~~
题目:         链接:点击打开链接 题意:         输入n个点,要求选m个点满足连接m个点的m-1条边权值和sum与点的权值和ans最小,即sum/ans最小,并输出所选的m个点,如果有多种情况就选第一个点最小的,如果第一个点也相同就选第二个点最小的........ 求一个图中的一颗子树,使得Sum(edge weight)/Sum(point weight)最小~ 数据...
分类:其他好文   时间:2014-06-14 07:05:34    阅读次数:350
出厂预装WIN8的机子要做xp或者win7,可以这样改bios
(一)笔记本电脑:win8改win7操作方法1:1、开机出现Logo时点击F1进入bios2、选择Restart—OS Optimized Defaults,修改成Disabled3、点击F9(Edge系列机型点击Fn+F9),选择Yes4、点击F10(Edge系列机型点击Fn+F10),选择Yes...
分类:移动开发   时间:2014-06-13 07:39:42    阅读次数:336
《UNIX环境高级编程(第3版)》
《UNIX环境高级编程(第3版)》基本信息原书名:Advanced Programming in the UNIX Environment (3rd Edition) (Addison-Wesley Professional Computing Series)原出版社: Addison-Wesley...
分类:其他好文   时间:2014-06-12 10:43:53    阅读次数:330
找最大独立集问题-Finding a Maximal Independent Set
独立集和最大独立集:A set of vertices I ? V is called independent if no pair of vertices in I is connected via an edge in G. An independent set is called maximal if by including any other vertex not in I, the independence property is violated....
分类:其他好文   时间:2014-06-10 06:30:03    阅读次数:369
什么是集群
?? 计算机集群(cluster)指一些松散的计算机系统,通过告诉网络连接,协同工作。集群对用户来说就像单台计算机系统,只不过是有更高的性能和更高的可靠性。集群中的每台计算机叫做节点。 常见集群类型 高性能计算(HPC, high performance computing) 主要用于科学计算,多用于科研领域,一般的商业领域较少用到该类集群。最开始出现的集群就是为了高性能计算设计的...
分类:其他好文   时间:2014-06-09 23:20:09    阅读次数:300
割点 桥 双连通分量模版
求割点 const int maxn = 1010; vector a[maxn], bcc[maxn]; int pre[maxn]; int low[maxn]; bool iscut[maxn]; int bccno[maxn]; int cnt[maxn]; int dfs_clock; int bcc_cnt; int n; struct Edge { int u, v; };...
分类:其他好文   时间:2014-06-08 05:54:36    阅读次数:270
Light OJ 1026 Critical Links 求桥
题目来源:Light OJ 1026 Critical Links 题意:输出桥 思路:模版 #include #include #include #include #include using namespace std; const int maxn = 10010; struct Edge { int u, v; Edge(){} Edge(int u, int v):...
分类:其他好文   时间:2014-06-08 04:07:05    阅读次数:235
Light OJ 1291 Real Life Traffic 双连通最少添边数
题目来源:Light OJ 1291 Real Life Traffic 题意:最少添加几条边 可以使全图边双连通 思路:缩点 重新构图 答案就是(叶子节点数+1)/ 2 #include #include #include #include #include using namespace std; const int maxn = 10010; struct Edge { i...
分类:其他好文   时间:2014-06-08 02:57:26    阅读次数:276
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!